diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # Revision history for quickcheck-silent
 
+## 0.11.0.6 -- 2026-08-08
+
+* Implementations, based on feedack from `#haskell` on
+  [Libera](https://libera.chat/) did not work, therefore, `withNumTests` logic
+  will be removed until fixed.
+
 ## 0.11.0.5 -- 2026-08-07
 
 * Updated `build.sh` based on feedack from `#haskell` on
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.5
+version: 0.11.0.6
 
 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
@@ -19,7 +19,7 @@
   ( -- * Property without IO
     SilentProp ()
   , silent
-  , Test.QuickCheck.Silent.withNumTests
+  -- , Test.QuickCheck.Silent.withNumTests
     -- * Running tests
   , Result(..)
   , quickCheckSilent
@@ -36,7 +36,6 @@
   , property
   , quickCheckWithResult
   , stdArgs
-  , withNumTests
   )
 
 --------------------------------------------------------------------------------
@@ -55,6 +54,8 @@
 silent =
   SilentProp . property
 
+{-
+
 -- | Configures how many times a silent property will be tested.
 --
 -- For example,
@@ -69,6 +70,8 @@
   -> SilentProp
 withNumTests n =
   SilentProp . Test.QuickCheck.withNumTests n
+
+-}
 
 --------------------------------------------------------------------------------
 
