diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,24 @@
 # Revision history for quickcheck-silent
 
-## 0 -- 2026-08-06
+## 0.11.0.1 -- 2026-08-07
+
+* It seems that there are some issues to build the package on `ghc-9.10.3`:
+
+```sh
+Running phase: buildPhase
+Preprocessing library for quickcheck-silent-0.11.0.0...
+Building library for quickcheck-silent-0.11.0.0...
+[1 of 1] Compiling Test.QuickCheck.Silent ( src/Test/QuickCheck/Silent.hs, dist/build/Test/QuickCheck/Silent.o, dist/build/Test/QuickCheck/Silent.dyn_o )
+src/Test/QuickCheck/Silent.hs:38:5: error: [GHC-61689]
+    Module ‘Test.QuickCheck’ does not export ‘withNumTests’.
+   |
+38 |   , withNumTests
+   |
+```
+
+* Hopefully importing the method from `Test.QuickCheck.Property` might help.
+
+## 0.11.0.0 -- 2026-08-06
 
 * First version. Released on an unsuspecting world.
 
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.0
+version: 0.11.0.1
 
 synopsis: Testing with QuickCheck in silence
 description: Testing with QuickCheck in silence. For more info see README.md
@@ -122,7 +122,7 @@
       -trust=ghc-prim
       -trust=random
       -trust=splitmix
-  if impl(ghc >= 9.10 && < 9.13)              
+  if impl(ghc >= 9.10 && < 9.13)
     ghc-options:
       -- Base
       -- NOTE: Issue with Hackage that builds with 9.8.4. 9.10.x requies this:
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
@@ -19,7 +19,7 @@
   ( -- * Property without IO
     SilentProp ()
   , silent
-  , Test.QuickCheck.Silent.withNumTests
+  , withNumTests
     -- * Running tests
   , quickCheckSilent
   )
@@ -35,8 +35,8 @@
   , property
   , quickCheckWithResult
   , stdArgs
-  , withNumTests
   )
+import qualified Test.QuickCheck.Property as QCP
 
 --------------------------------------------------------------------------------
 
@@ -67,7 +67,7 @@
   -> prop
   -> SilentProp
 withNumTests n =
-  SilentProp . Test.QuickCheck.withNumTests n
+  SilentProp . QCP.withNumTests n
 
 --------------------------------------------------------------------------------
 
