diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,19 @@
 # Revision history for quickcheck-silent
 
+## 0.11.0.5 -- 2026-08-07
+
+* Updated `build.sh` based on feedack from `#haskell` on
+  [Libera](https://libera.chat/).
+  ```irc
+  14:16 < comerijn> gentauro: At any rate to reproduce your hackage error I would try: cabal sdist, then copy the tarball to a new directory, unzip the tarball, try and build in that new directory, see if it works
+  ```
+
+* Adding, `withNumTests` based on feedack from `#haskell` on
+  [Libera](https://libera.chat/).
+  ```irc
+  14:46 < tomsmeding> gentauro: or too narrow, or something; in particular, Test.QuickCheck.Property.withNumTests is new since QuickCheck-2.18.0.0
+  ```
+
 ## 0.11.0.4 -- 2026-08-07
 
 * Re-exporting `Test.QuickChech.Result` to avoid dependency on the `QuickChech`
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.4
+version: 0.11.0.5
 
 synopsis: Testing with QuickCheck in silence
 description: Testing with QuickCheck in silence. For more info see README.md
@@ -54,7 +54,7 @@
       -- Prelude
       base       >= 4      && < 5
       -- Test
-    , QuickCheck >= 2.1    && < 3
+    , QuickCheck >= 2.18   && < 3
   ghc-options:
       --------------------------------------------------------------------------
       -- GHC 9.10.3 Users Guide
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
-  -- , withNumTests
+  , Test.QuickCheck.Silent.withNumTests
     -- * Running tests
   , Result(..)
   , quickCheckSilent
@@ -36,6 +36,7 @@
   , property
   , quickCheckWithResult
   , stdArgs
+  , withNumTests
   )
 
 --------------------------------------------------------------------------------
@@ -54,7 +55,6 @@
 silent =
   SilentProp . property
 
-{-
 -- | Configures how many times a silent property will be tested.
 --
 -- For example,
@@ -68,8 +68,7 @@
   -> prop
   -> SilentProp
 withNumTests n =
-  SilentProp . withNumTests n
--}
+  SilentProp . Test.QuickCheck.withNumTests n
 
 --------------------------------------------------------------------------------
 
