diff --git a/Statistics/Resampling.hs b/Statistics/Resampling.hs
--- a/Statistics/Resampling.hs
+++ b/Statistics/Resampling.hs
@@ -84,7 +84,7 @@
   , resamples  :: v a
   }
   deriving (Eq, Read, Show , Generic, Functor, T.Foldable, T.Traversable
-#if __GLASGOW_HASKELL >= 708
+#if __GLASGOW_HASKELL__ >= 708
            , Typeable, Data
 #endif
            )
diff --git a/Statistics/Types.hs b/Statistics/Types.hs
--- a/Statistics/Types.hs
+++ b/Statistics/Types.hs
@@ -324,7 +324,7 @@
     , estError           :: !(e a)
       -- ^ Confidence interval for estimate.
     } deriving (Eq, Read, Show, Generic
-#if __GLASGOW_HASKELL >= 708
+#if __GLASGOW_HASKELL__ >= 708
                , Typeable, Data
 #endif
                )
diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,8 @@
+## Changes in 0.14.0.2
+
+ * Compatibility fixes with older GHC
+
+
 ## Changes in 0.14.0.1
 
  * Restored compatibility with GHC 7.4 & 7.6
diff --git a/statistics.cabal b/statistics.cabal
--- a/statistics.cabal
+++ b/statistics.cabal
@@ -1,5 +1,5 @@
 name:           statistics
-version:        0.14.0.1
+version:        0.14.0.2
 synopsis:       A library of statistical types, data, and functions
 description:
   This library provides a number of common functions and types useful
@@ -103,7 +103,7 @@
     Statistics.Types.Internal
   build-depends:
     aeson >= 0.6.0.0,
-    base >= 4.4 && < 5,
+    base >= 4.5 && < 5,
     base-orphans >= 0.6 && <0.7,
     binary >= 0.5.1.0,
     deepseq >= 1.1.0.2,
