cabal-detailed-quickcheck 0.1.3.0 → 0.1.3.1
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 +4/−0
- cabal-detailed-quickcheck.cabal +2/−2
- lib/Distribution/TestSuite/QuickCheck.hs +1/−1
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for cabal-detailed-quickcheck +## 0.1.3.1 — 2022-09-18++* Fixed a link formatting problem in the documentation.+ ## 0.1.3.0 — 2022-09-18 * Added `argsToTestArgsWith`.
cabal-detailed-quickcheck.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: cabal-detailed-quickcheck-version: 0.1.3.0+version: 0.1.3.1 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.0+ tag: 0.1.3.1
lib/Distribution/TestSuite/QuickCheck.hs view
@@ -14,7 +14,7 @@ -- Stability: stable -- Portability: Portable ----- This module allows you to easily make Cabal tests for the @detailed-0.9@ interface. ([docs](https://cabal.readthedocs.io/en/3.6/cabal-package.html#example-package-using-detailed-0-9-interface))+-- This module allows you to easily make Cabal tests for the @detailed-0.9@ interface. See the [docs](https://cabal.readthedocs.io/en/3.6/cabal-package.html#example-package-using-detailed-0-9-interface). -- It sets sensible option declarations for the tests. -- -- This module re-uses record names from "Distribution.TestSuite" and "Test.QuickCheck".