genvalidity-persistent 1.0.0.0 → 1.0.0.1
raw patch · 3 files changed
+19/−5 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +6/−0
- bench/Main.hs +10/−2
- genvalidity-persistent.cabal +3/−3
CHANGELOG.md view
@@ -1,5 +1,11 @@ # Changelog +## [1.0.0.1] - 2022-08-30++### Added++* Shrinking benchmarks+ ## [1.0.0.0] - 2021-11-20 ### Changed
bench/Main.hs view
@@ -53,6 +53,14 @@ main :: IO () main = defaultMain- [ genValidBench @ThingId,- genValidBench @(Entity Thing)+ [ bgroup+ "generators"+ [ genValidBench @ThingId,+ genValidBench @(Entity Thing)+ ],+ bgroup+ "shrinkers"+ [ shrinkValidBench @ThingId,+ shrinkValidBench @(Entity Thing)+ ] ]
genvalidity-persistent.cabal view
@@ -1,18 +1,18 @@ cabal-version: 1.12 --- This file has been generated from package.yaml by hpack version 0.34.4.+-- This file has been generated from package.yaml by hpack version 0.34.7. -- -- see: https://github.com/sol/hpack name: genvalidity-persistent-version: 1.0.0.0+version: 1.0.0.1 synopsis: GenValidity support for Persistent category: Testing homepage: https://github.com/NorfairKing/validity#readme bug-reports: https://github.com/NorfairKing/validity/issues author: Tom Sydney Kerckhove maintainer: syd@cs-syd.eu-copyright: Copyright: (c) 2016-2021 Tom Sydney Kerckhove+copyright: Copyright: (c) 2016-2022 Tom Sydney Kerckhove license: MIT license-file: LICENSE build-type: Simple