diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+# 0.1.0.1 (2018-09-01)
+
+* Relax version bound for hspec and fix a warning in
+  the test suite.
+
 # 0.1.0.0 (2017-05-01)
 
 * Initial release. Everything is still rather experimental.
diff --git a/Setup.hs b/Setup.hs
deleted file mode 100644
--- a/Setup.hs
+++ /dev/null
@@ -1,2 +0,0 @@
-import Distribution.Simple
-main = defaultMain
diff --git a/records-sop.cabal b/records-sop.cabal
--- a/records-sop.cabal
+++ b/records-sop.cabal
@@ -1,12 +1,12 @@
 name: records-sop
-version: 0.1.0.0
+version: 0.1.0.1
 author: Andres Löh <andres@well-typed.com>
 maintainer: andres@well-typed.com
 license: BSD3
 license-file: LICENSE
 cabal-version: >= 1.10
 build-type: Simple
-tested-with: GHC == 8.0.1, GHC == 8.0.2, GHC == 8.2.1, GHC == 8.3.*
+tested-with: GHC == 8.0.2, GHC == 8.2.1, GHC == 8.4.3, GHC == 8.6.1
 category: Generics
 synopsis: Record subtyping and record utilities with generics-sop
 description:
@@ -32,7 +32,7 @@
     Generics.SOP.Record.SubTyping
   build-depends:
     base >= 4.9 && < 5.0,
-    deepseq >= 1.3 && < 1.5,            
+    deepseq >= 1.3 && < 1.5,
     generics-sop >= 0.3 && < 0.4,
     ghc-prim >= 0.5 && < 0.6
   default-language:
@@ -50,7 +50,7 @@
   build-depends:
     base >= 4.9 && < 5.0,
     deepseq >= 1.4 && < 1.5,
-    hspec >= 2.2 && < 2.5,
+    hspec >= 2.2 && < 2.6,
     generics-sop >= 0.3 && < 0.4,
     records-sop,
     should-not-typecheck >= 2.1 && < 2.2
diff --git a/tests/Examples.hs b/tests/Examples.hs
--- a/tests/Examples.hs
+++ b/tests/Examples.hs
@@ -11,7 +11,6 @@
 import Test.ShouldNotTypecheck
 
 import Generics.SOP
-import Generics.SOP.Record
 import Generics.SOP.Record.SubTyping
 
 data X = MkX {}
