diff --git a/ChasingBottoms.cabal b/ChasingBottoms.cabal
--- a/ChasingBottoms.cabal
+++ b/ChasingBottoms.cabal
@@ -1,5 +1,5 @@
 name:               ChasingBottoms
-version:            1.3.0.11
+version:            1.3.0.12
 license:            MIT
 license-file:       LICENCE
 copyright:          Copyright (c) Nils Anders Danielsson 2004-2015.
@@ -117,7 +117,7 @@
   the rest requires @Data.Generics@; @isBottom@ only requires
   exceptions, though.
 category:           Testing
-tested-with:        GHC == 7.8.4
+tested-with:        GHC == 7.10.1
 cabal-version:      >= 1.9.2
 build-type:         Simple
 
@@ -138,7 +138,7 @@
 
     other-modules: Test.ChasingBottoms.IsType
 
-    build-depends: QuickCheck >= 2.1 && < 2.8,
+    build-depends: QuickCheck >= 2.1 && < 2.9,
                    mtl >= 1.1 && < 2.3,
                    base >= 4.0 && < 4.9,
                    containers >= 0.3 && < 0.6,
@@ -161,7 +161,7 @@
                    Test.ChasingBottoms.TestUtilities.Generators,
                    Test.ChasingBottoms.TimeOut.Tests
 
-    build-depends: QuickCheck >= 2.1 && < 2.8,
+    build-depends: QuickCheck >= 2.1 && < 2.9,
                    mtl >= 1.1 && < 2.3,
                    base >= 4.0 && < 4.9,
                    containers >= 0.3 && < 0.6,
diff --git a/Test/ChasingBottoms/IsBottom/Tests.hs b/Test/ChasingBottoms/IsBottom/Tests.hs
--- a/Test/ChasingBottoms/IsBottom/Tests.hs
+++ b/Test/ChasingBottoms/IsBottom/Tests.hs
@@ -1,5 +1,9 @@
 {-# LANGUAGE ScopedTypeVariables #-}
 
+-- The code below intentionally triggers some GHC warnings, so these
+-- warnings are turned off.
+{-# OPTIONS_GHC -fno-warn-missing-methods -fno-warn-missing-fields #-}
+
 -- | Tests of the functions in "Test.ChasingBottoms.IsBottom".
 --
 -- Note that the warnings given when compiling this module are
