diff --git a/src/Test/Framework/Providers/Feat.hs b/src/Test/Framework/Providers/Feat.hs
--- a/src/Test/Framework/Providers/Feat.hs
+++ b/src/Test/Framework/Providers/Feat.hs
@@ -32,7 +32,11 @@
                     | PropertyFalsifiable String
                     -- ^ The property was not true. The strings 
                     --   are the reason and the output.
-                    deriving(Show, Eq)
+                    deriving(Eq)
+                    
+instance Show PropertyStatus where
+    show PropertyOK              = "Property OK"
+    show (PropertyFalsifiable x) = "Property failed with " ++ x
 
 propertySucceeded :: PropertyStatus -> Bool
 propertySucceeded s = case s of
diff --git a/test-framework-testing-feat.cabal b/test-framework-testing-feat.cabal
--- a/test-framework-testing-feat.cabal
+++ b/test-framework-testing-feat.cabal
@@ -2,7 +2,7 @@
 -- further documentation, see http://haskell.org/cabal/users-guide/
 
 name:                test-framework-testing-feat
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            A test framework provider for testing-feat
 description:         A test provider for testing-feat copied from test-framework-quickcheck2 by Max Bolingbroke
 homepage:            http://github.com/jfischoff/test-framework-testing-feat
