packages feed

quickcheck-silent 0.11.0.1 → 0.11.0.2

raw patch · 3 files changed

+37/−15 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,20 +1,41 @@ # Revision history for quickcheck-silent +## 0.11.0.2 -- 2026-08-07++* This did not help at all:++  > _Hopefully importing the method from `Test.QuickCheck.Property` might help_++  ```sh+  Running phase: buildPhase+  Preprocessing library for quickcheck-silent-0.11.0.1...+  Building library for quickcheck-silent-0.11.0.1...+  [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:70:16: error: [GHC-76037]+      Not in scope: ‘QCP.withNumTests’+      NB: the module ‘Test.QuickCheck.Property’ does not export ‘withNumTests’.+     |+  70 |   SilentProp . QCP.withNumTests n+     |+  ```++* Therefore, `withNumTests` logic will be removed until fixed.+ ## 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-   |-```+  ```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. 
quickcheck-silent.cabal view
@@ -10,7 +10,7 @@ build-type: Simple                                                name: quickcheck-silent-version: 0.11.0.1+version: 0.11.0.2  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-  , withNumTests+  -- , withNumTests     -- * Running tests   , quickCheckSilent   )@@ -36,7 +36,6 @@   , quickCheckWithResult   , stdArgs   )-import qualified Test.QuickCheck.Property as QCP  -------------------------------------------------------------------------------- @@ -54,6 +53,7 @@ silent =   SilentProp . property +{- -- | Configures how many times a silent property will be tested. -- -- For example,@@ -67,7 +67,8 @@   -> prop   -> SilentProp withNumTests n =-  SilentProp . QCP.withNumTests n+  SilentProp . withNumTests n+-}  --------------------------------------------------------------------------------