diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,13 @@
 project adheres to the [Haskell Package Versioning
 Policy (PVP)](https://pvp.haskell.org)
 
-## 0.1.0.0 - 2017-09-21
+
+## [0.1.0.1] - 2017-09-25
+  * test-suite: build fix for ghc-8.2
+
+## [0.1.0.0] - 2017-09-21
   * First version. Released on an unsuspecting world.
+
+[0.1.0.1]:          https://github.com/tmcdonell/accelerate-blas/compare/0.1.0.0...0.1.0.1
+[0.1.0.0]:          https://github.com/tmcdonell/accelerate-blas/compare/4c89f4e6c62b8de3f37855ab2e4d27046b2495b2...0.1.0.0
 
diff --git a/accelerate-blas.cabal b/accelerate-blas.cabal
--- a/accelerate-blas.cabal
+++ b/accelerate-blas.cabal
@@ -1,5 +1,5 @@
 name:                   accelerate-blas
-version:                0.1.0.0
+version:                0.1.0.1
 synopsis:               Numeric Linear Algebra in Accelerate
 description:
   Linear systems, matrix decompositions, and other numerical computations for
@@ -183,7 +183,7 @@
 
 source-repository this
   type:     git
-  tag:      0.1.0.0
+  tag:      0.1.0.1
   location: https://github.com/tmcdonell/accelerate-blas
 
 -- vim: nospell
diff --git a/test/Hedgehog/Gen/Shape.hs b/test/Hedgehog/Gen/Shape.hs
--- a/test/Hedgehog/Gen/Shape.hs
+++ b/test/Hedgehog/Gen/Shape.hs
@@ -12,7 +12,7 @@
 -- Generate a randomly sized shape of the given dimensionality
 --
 class GenShape sh where
-  genShape :: Monad m => Range Int -> Gen sh
+  genShape :: Range Int -> Gen sh
 
 instance GenShape Z where
   genShape _ = return Z
diff --git a/test/Similar.hs b/test/Similar.hs
--- a/test/Similar.hs
+++ b/test/Similar.hs
@@ -1,5 +1,5 @@
-{-# LANGUAGE FlexibleContexts #-}
 {-# LANGUAGE DefaultSignatures #-}
+{-# LANGUAGE FlexibleContexts  #-}
 {-# LANGUAGE TypeOperators     #-}
 
 module Similar where
@@ -12,7 +12,7 @@
 
 
 infix 4 ~~~
-(~~~) :: (MonadTest m, Similar a, Show (Sim a), HasCallStack) => a -> a -> m ()
+(~~~) :: (MonadTest m, Similar a, Show a, HasCallStack) => a -> a -> m ()
 a ~~~ b = withFrozenCallStack $ Sim a === Sim b
 
 
