packages feed

quickcheck-silent 0.11.0.11 → 0.11.0.12

raw patch · 3 files changed

+6/−8 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for quickcheck-silent +## 0.11.0.12 -- 2026-08-18++* Deriving `Show` for `Status` instead of implementing a custom instance.+ ## 0.11.0.11 -- 2026-08-18  * The following issue only shows up once distribuited and built with `nix`:
quickcheck-silent.cabal view
@@ -10,7 +10,7 @@ build-type: Simple                                                name: quickcheck-silent-version: 0.11.0.11+version: 0.11.0.12  synopsis: Testing with QuickCheck in silence description: Testing with QuickCheck in silence. For more info see README.md
src/Test/QuickCheck/Silent.hs view
@@ -85,13 +85,7 @@   | Desisted   -- | A property that should have failed did not   | NoFailure-  deriving Data--instance Show Status where-  show Desisted  = "desisted"-  show Failure   = "failure"-  show NoFailure = "nofailure"-  show Success   = "success"+  deriving (Data, Show)  -- | Result represents the test result data Result =