packages feed

cabal-detailed-quickcheck 0.1.3.1 → 0.1.3.2

raw patch · 3 files changed

+7/−3 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 cabal-detailed-quickcheck +## 0.1.3.2 — 2022-09-18++* Fixed a typo in the documentation.+ ## 0.1.3.1 — 2022-09-18  * Fixed a link formatting problem in the documentation.
cabal-detailed-quickcheck.cabal view
@@ -1,6 +1,6 @@ cabal-version:      2.4 name:               cabal-detailed-quickcheck-version:            0.1.3.1+version:            0.1.3.2 synopsis:           QuickCheck for Cabal tests description:        Turn QuickCheck properties into detailed Cabal tests homepage:           https://github.com/schuelermine/cabal-detailed-quickcheck@@ -31,4 +31,4 @@ source-repository this     type:               git     location:           https://github.com/schuelermine/cabal-detailed-quickcheck.git-    tag:                0.1.3.1+    tag:                0.1.3.2
lib/Distribution/TestSuite/QuickCheck.hs view
@@ -33,7 +33,7 @@ --   'getPropertyTest' 'PropertyTest' { --     'name' = /"addition-is-commutative"/, --     'tags' = [],---     'property' = \a b -> a + b 'QC.===' b + a+--     'property' = \\a b -> a + b 'QC.===' b + a --     } --   ] -- @