packages feed

quickcheck-silent 0.11.0.5 → 0.11.0.6

raw patch · 3 files changed

+12/−3 lines, 3 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Test.QuickCheck.Silent: withNumTests :: Testable prop => Int -> prop -> SilentProp

Files

CHANGELOG.md view
@@ -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
quickcheck-silent.cabal view
@@ -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
src/Test/QuickCheck/Silent.hs view
@@ -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++-}  --------------------------------------------------------------------------------