diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,1 @@
+See https://github.com/feuerbach/tasty/blob/master/CHANGES.md
diff --git a/Test/Tasty/QuickCheck.hs b/Test/Tasty/QuickCheck.hs
--- a/Test/Tasty/QuickCheck.hs
+++ b/Test/Tasty/QuickCheck.hs
@@ -103,13 +103,11 @@
     r <- QC.quickCheckWithResult args prop
 
     return $
-      Result
-        { resultSuccessful = successful r
-        , resultDescription =
-            if unexpected r
-              then QC.output r ++ reproduceMsg r
-              else QC.output r
-        }
+      (if successful r then testPassed else testFailed)
+      (if unexpected r
+         then QC.output r ++ reproduceMsg r
+         else QC.output r
+      )
 
 successful :: QC.Result -> Bool
 successful r =
diff --git a/tasty-quickcheck.cabal b/tasty-quickcheck.cabal
--- a/tasty-quickcheck.cabal
+++ b/tasty-quickcheck.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                tasty-quickcheck
-version:             0.3.1
+version:             0.8
 synopsis:            QuickCheck support for the Tasty test framework.
 description:         QuickCheck support for the Tasty test framework.
 license:             MIT
@@ -12,13 +12,18 @@
 -- copyright:           
 category:            Testing
 build-type:          Simple
--- extra-source-files:  
+extra-source-files:  CHANGELOG
 cabal-version:       >=1.10
 
+Source-repository head
+  type:     git
+  location: git://github.com/feuerbach/tasty.git
+  subdir:   quickcheck
+
 library
   exposed-modules:     Test.Tasty.QuickCheck
   -- other-modules:       
   other-extensions:    GeneralizedNewtypeDeriving, DeriveDataTypeable
-  build-depends:       base == 4.*, tasty, QuickCheck >= 2.5 && < 3, tagged, random
+  build-depends:       base == 4.*, tasty >= 0.8, QuickCheck >= 2.5 && < 3, tagged, random
   -- hs-source-dirs:      
   default-language:    Haskell2010
