packages feed

tasty-hedgehog 1.4.0.1 → 1.4.0.2

raw patch · 3 files changed

+10/−4 lines, 3 filesdep ~basedep ~hedgehogdep ~tastyPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base, hedgehog, tasty

API changes (from Hackage documentation)

Files

changelog.md view
@@ -1,5 +1,9 @@ # Revision history for tasty-hedgehog +## 1.4.0.2 -- 2023-08-07++* Support hedgehog 1.4+ ## 1.4.0.1 -- 2023-03-15  * Support base 4.18 (GHC 9.6)
src/Test/Tasty/Hedgehog.hs view
@@ -176,13 +176,15 @@       let         count = reportTests report         seed = reportSeed report+        discards = reportDiscards report+        shrinkPath = failureShrinkPath fr         replayStr =           if showReplay           then             "\nUse \"--pattern \'$NF ~ /" ++             testName ++             "/\' --hedgehog-replay \'" ++-            skipCompress (SkipToShrink count $ failureShrinkPath fr) +++            skipCompress (SkipToShrink count discards shrinkPath) ++             " " ++             show seed ++             "\'\" to reproduce from the command-line."
tasty-hedgehog.cabal view
@@ -1,5 +1,5 @@ name:                tasty-hedgehog-version:             1.4.0.1+version:             1.4.0.2 license:             BSD3 license-file:        LICENCE author:              Dave Laing@@ -24,7 +24,7 @@   build-depends:       base >= 4.8 && <4.19                      , tagged >= 0.8 && < 0.9                      , tasty >= 0.11 && < 1.5-                     , hedgehog >= 1.2 && < 1.3+                     , hedgehog >= 1.4 && < 1.5   hs-source-dirs:      src   ghc-options:         -Wall   default-language:    Haskell2010@@ -36,7 +36,7 @@   build-depends:       base >= 4.8 && <4.19                      , tasty >= 0.11 && < 1.5                      , tasty-expected-failure >= 0.11 && < 0.13-                     , hedgehog >= 1.2 && < 1.3+                     , hedgehog >= 1.4 && < 1.5                      , tasty-hedgehog   ghc-options:         -Wall   default-language:    Haskell2010