generic-arbitrary 1.0.0 → 1.0.1
raw patch · 3 files changed
+12/−3 lines, 3 filesdep ~basedep ~deepseqdep ~tastyPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, deepseq, tasty, tasty-quickcheck
API changes (from Hackage documentation)
Files
- CHANGELOG.md +6/−0
- generic-arbitrary.cabal +5/−3
- test/RecursiveTest.hs +1/−0
CHANGELOG.md view
@@ -1,3 +1,9 @@+1.0.1+-----++* Compillability by GHC-9.2.4+* Fix cabal `tested-with` field+ 1.0.0 -----
generic-arbitrary.cabal view
@@ -1,5 +1,5 @@ name: generic-arbitrary-version: 1.0.0+version: 1.0.1 synopsis: Generic implementation for QuickCheck's Arbitrary description: Generic implementations of methods of the 'Arbitrary' class from the@@ -17,8 +17,10 @@ extra-source-files: CHANGELOG.md , README.md cabal-version: 1.22-tested-with: GHC == 8.10.7- , GHC == 9.0.2+tested-with: GHC == 8.6.5+ , GHC == 8.10.7+ , GHC == 9.0.2+ , GHC == 9.2.4 source-repository head type: git
test/RecursiveTest.hs view
@@ -1,6 +1,7 @@ {-# LANGUAGE DerivingStrategies #-} {-# LANGUAGE DerivingVia #-} {-# LANGUAGE DeriveAnyClass #-}+{-# OPTIONS_GHC -fconstraint-solver-iterations=5 #-} -- GHC-9.2.4 -- | Testing that our Arbitrary instances do not get stuck and respect the -- `size` parameter while generating.