diff --git a/chell-quickcheck.cabal b/chell-quickcheck.cabal
--- a/chell-quickcheck.cabal
+++ b/chell-quickcheck.cabal
@@ -1,5 +1,5 @@
 name: chell-quickcheck
-version: 0.2.4
+version: 0.2.5
 license: MIT
 license-file: license.txt
 author: John Millikin <john@john-millikin.com>
@@ -19,7 +19,7 @@
 source-repository this
   type: git
   location: https://john-millikin.com/code/chell-quickcheck/
-  tag: chell-quickcheck_0.2.4
+  tag: chell-quickcheck_0.2.5
 
 library
   hs-source-dirs: lib
@@ -28,7 +28,7 @@
   build-depends:
       base >= 4.0 && < 5.0
     , chell >= 0.3 && < 0.5
-    , QuickCheck >= 2.3 && < 2.8
+    , QuickCheck >= 2.3 && < 2.9
     , random
 
   exposed-modules:
diff --git a/lib/Test/Chell/QuickCheck.hs b/lib/Test/Chell/QuickCheck.hs
--- a/lib/Test/Chell/QuickCheck.hs
+++ b/lib/Test/Chell/QuickCheck.hs
@@ -4,6 +4,7 @@
 	( property
 	) where
 
+import           Data.Monoid (mempty)
 import           System.Random (mkStdGen)
 
 import qualified Test.Chell as Chell
@@ -63,6 +64,9 @@
 #endif
 #if MIN_VERSION_QuickCheck(2,5,1)
 		, State.numRecentlyDiscardedTests = 0
+#endif
+#if MIN_VERSION_QuickCheck(2,8,0)
+		, State.labels = mempty
 #endif
 		}
 	
