diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,36 +1,51 @@
+# 0.1.5.1
+
+- GHC 8.6 compatibility (Thanks @gwils)
+
 # 0.1.5.0
+
 - Added `histogram`, `histogram'` and `ordersOfMagnitude`.
 
 # 0.1.4.6
+
 - Relax bounds on tasty-quickcheck
 
 # 0.1.4.5
+
 - Fix dependencies for GHC < 8.0
 
 # 0.1.4.4
+
 - Update to foldl < 1.4
 
 # 0.1.4.3
+
 - Update to statistics 0.14
 
 # 0.1.4.1
+
 - foldl >= 1.2.2 exports `mean` and ` variance`, so hide them.
 - export `lrrCount`
 
 # 0.1.4.0
+
 - Added monoidal interface to linear regression
 
 # 0.1.3.0
+
 - Added unbiased versions of LMVSK functions
 
 # 0.1.2.0
+
 - Exposed monoidal LMVSKState
 - Improved testing, including for fastLMVSK
 
 # 0.1.1.0
+
 - Add fastLMVSK (length, mean, variance, skewness and kurtosis)
 - Add fastLinearReg (count, slope, (Y) intercept and correlation of `(x,y)`)
 
 
 # 0.1.0.0
+
 - Initial release
diff --git a/foldl-statistics.cabal b/foldl-statistics.cabal
--- a/foldl-statistics.cabal
+++ b/foldl-statistics.cabal
@@ -1,5 +1,5 @@
 name:                foldl-statistics
-version:             0.1.5.0
+version:             0.1.5.1
 synopsis:            Statistical functions from the statistics package implemented as
                      Folds.
 description:         The use of this package allows statistics to be computed using at most two
@@ -19,17 +19,17 @@
 build-type:          Simple
 extra-source-files:  CHANGELOG.md, README.md
 cabal-version:       >=1.10
-tested-with:         GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.*
+tested-with:         GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.3, GHC == 8.6.1
 
 library
   hs-source-dirs:      src
   exposed-modules:     Control.Foldl.Statistics
   default-language:    Haskell2010
   build-depends:       base             >= 4.7 && < 5
-                       , foldl          >= 1.1 && < 1.4
-                       , math-functions >= 0.1 && < 0.3
-                       , profunctors    >= 5.2 && < 5.3
-                       , containers     >= 0.1.0.0 && < 0.6
+                       , foldl          >= 1.1 && < 1.5
+                       , math-functions >= 0.1 && < 0.4
+                       , profunctors    >= 5.2 && < 5.4
+                       , containers     >= 0.1.0.0 && < 0.7
                        , unordered-containers >= 0.1.0.0 && < 0.3
                        , hashable       >=1.0.1.1 && < 1.3
   if impl(ghc < 8.0)
@@ -46,8 +46,8 @@
                      , foldl-statistics
                      , foldl
                      , statistics           >= 0.13 && < 0.15
-                     , tasty                >= 0.11 && < 0.12
-                     , tasty-quickcheck     >= 0.8 && < 0.10
+                     , tasty                >= 0.11 && < 1.2
+                     , tasty-quickcheck     >= 0.8 && < 0.11
                      , vector               >= 0.11 && < 0.13
                      , quickcheck-instances >= 0.3 && < 0.4
                      , profunctors
@@ -63,9 +63,9 @@
                   , foldl-statistics
                   , foldl
                   , statistics      >= 0.13 && < 0.15
-                  , criterion       >= 1.1 && < 1.3
+                  , criterion       >= 1.1 && < 1.6
                   , vector          >= 0.10 && < 1.0
-                  , mwc-random      >= 0.13 && < 0.14
+                  , mwc-random      >= 0.13 && < 0.15
     if impl(ghc < 8.0)
       build-depends: semigroups
 
