packages feed

genvalidity-path 1.0.0.0 → 1.0.0.1

raw patch · 3 files changed

+24/−8 lines, 3 filesdep ~genvalidity-criterionPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: genvalidity-criterion

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,11 @@ # Changelog +## [1.0.0.1] - 2022-08-30++### Changed++* Shrinking benchmarks+ ## [1.0.0.0] - 2021-11-20  ### Changed
bench/Main.hs view
@@ -10,8 +10,18 @@ main :: IO () main =   defaultMain-    [ genValidBench @(Path Abs File),-      genValidBench @(Path Rel File),-      genValidBench @(Path Abs Dir),-      genValidBench @(Path Rel Dir)+    [ bgroup+        "generators"+        [ genValidBench @(Path Abs File),+          genValidBench @(Path Rel File),+          genValidBench @(Path Abs Dir),+          genValidBench @(Path Rel Dir)+        ],+      bgroup+        "shrinkers"+        [ shrinkValidBench @(Path Abs File),+          shrinkValidBench @(Path Rel File),+          shrinkValidBench @(Path Abs Dir),+          shrinkValidBench @(Path Rel Dir)+        ]     ]
genvalidity-path.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-path-version:        1.0.0.0+version:        1.0.0.1 synopsis:       GenValidity support for Path 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@@ -69,7 +69,7 @@     , base >=4.7 && <5     , criterion     , genvalidity-    , genvalidity-criterion+    , genvalidity-criterion >=1.1.0.0     , genvalidity-path     , path >=0.5   default-language: Haskell2010