quickcheck-silent 0.11.0.4 → 0.11.0.5
raw patch · 3 files changed
+19/−6 lines, 3 filesdep ~QuickCheckPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
Dependency ranges changed: QuickCheck
API changes (from Hackage documentation)
+ Test.QuickCheck.Silent: withNumTests :: Testable prop => Int -> prop -> SilentProp
Files
- CHANGELOG.md +14/−0
- quickcheck-silent.cabal +2/−2
- src/Test/QuickCheck/Silent.hs +3/−4
CHANGELOG.md view
@@ -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`
quickcheck-silent.cabal view
@@ -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
src/Test/QuickCheck/Silent.hs view
@@ -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 --------------------------------------------------------------------------------