diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
 # Revision history for quickcheck-silent
 
+## 0.11.0.4 -- 2026-08-07
+
+* Re-exporting `Test.QuickChech.Result` to avoid dependency on the `QuickChech`
+  package
+
 ## 0.11.0.3 -- 2026-08-07
 
 * There seem to be a lot of errors that aren't happening on build of the
diff --git a/quickcheck-silent.cabal b/quickcheck-silent.cabal
--- a/quickcheck-silent.cabal
+++ b/quickcheck-silent.cabal
@@ -10,7 +10,7 @@
 build-type: Simple
                                               
 name: quickcheck-silent
-version: 0.11.0.3
+version: 0.11.0.4
 
 synopsis: Testing with QuickCheck in silence
 description: Testing with QuickCheck in silence. For more info see README.md
diff --git a/src/Test/QuickCheck/Silent.hs b/src/Test/QuickCheck/Silent.hs
--- a/src/Test/QuickCheck/Silent.hs
+++ b/src/Test/QuickCheck/Silent.hs
@@ -21,6 +21,7 @@
   , silent
   -- , withNumTests
     -- * Running tests
+  , Result(..)
   , quickCheckSilent
   )
 where
@@ -29,7 +30,7 @@
 
 import           Test.QuickCheck
   ( Property
-  , Result
+  , Result (..)
   , Testable
   , chatty
   , property
