diff --git a/hspec-smallcheck.cabal b/hspec-smallcheck.cabal
--- a/hspec-smallcheck.cabal
+++ b/hspec-smallcheck.cabal
@@ -1,5 +1,5 @@
 name:             hspec-smallcheck
-version:          0.1.0
+version:          0.2.0
 license:          MIT
 license-file:     LICENSE
 copyright:        (c) 2013 Simon Hengel
@@ -7,7 +7,6 @@
 build-type:       Simple
 cabal-version:    >= 1.8
 category:         Testing
-stability:        experimental
 bug-reports:      https://github.com/hspec/hspec-smallcheck/issues
 homepage:         http://hspec.github.io/
 synopsis:         SmallCheck support for the Hspec testing framework
@@ -26,7 +25,7 @@
       Test.Hspec.SmallCheck
   build-depends:
       base              == 4.*
-    , hspec             >= 1.7
+    , hspec             >= 1.8
     , smallcheck        >= 1.0
 
 test-suite spec
@@ -40,6 +39,8 @@
       Spec.hs
   build-depends:
       base              == 4.*
+    , hspec
     , smallcheck
+
     , hspec-smallcheck
-    , hspec
+    , QuickCheck
diff --git a/src/Test/Hspec/SmallCheck.hs b/src/Test/Hspec/SmallCheck.hs
--- a/src/Test/Hspec/SmallCheck.hs
+++ b/src/Test/Hspec/SmallCheck.hs
@@ -12,7 +12,7 @@
 property = test
 
 instance Example (Property IO) where
-  evaluateExample c p = do
+  evaluateExample p c _ = do
     counter <- newIORef 0
     let hook _ = do
           modifyIORef counter succ
