quickcheck-silent 0.11.0.10 → 0.11.0.11
raw patch · 2 files changed
+17/−2 lines, 2 filesdep ~containersPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: containers
API changes (from Hackage documentation)
Files
- CHANGELOG.md +15/−0
- quickcheck-silent.cabal +2/−2
CHANGELOG.md view
@@ -1,5 +1,20 @@ # Revision history for quickcheck-silent +## 0.11.0.11 -- 2026-08-18++* The following issue only shows up once distribuited and built with `nix`:+ ```+ Warning:+ This package indirectly depends on multiple versions of the same+ package. This is very likely to cause a compile failure.+ package QuickCheck (QuickCheck-2.18.0.0-DOrynHtGkwDJTvEyuDdhMp) requires containers-0.6.8-8162+ package quickcheck-silent (quickcheck-silent-0.11.0.10) requires containers-0.8-K3knBMiOLoF4ZXMnieGzr8+ ```+ Therefore, we are changing the build depencies in `cabal` to:+ ```+ containers >= 0.6 && < 1+ ```+ ## 0.11.0.10 -- 2026-08-18 * Added basic test hierarchy capabilities: `suite`, `group` (category) and
quickcheck-silent.cabal view
@@ -10,7 +10,7 @@ build-type: Simple name: quickcheck-silent-version: 0.11.0.10+version: 0.11.0.11 synopsis: Testing with QuickCheck in silence description: Testing with QuickCheck in silence. For more info see README.md@@ -60,7 +60,7 @@ -- Test , QuickCheck >= 2.18 && < 3 -- JSON- , containers >= 0.7 && < 1+ , containers >= 0.6 && < 1 , mtl >= 2.3.1 && < 3 ghc-options: --------------------------------------------------------------------------