Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.5 #534

Merged
merged 1 commit into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 65 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@
## Version 1.5 (unreleased)

* Remove redundant `Show` constraints on `evalMaybe`, `evalMaybeM`
## Version 1.5 (2024-07-25)

* Bump containers and filepath dependencies ([#533](533), [@erikd][erikd])
* Hedgehog.Internal.Report: Add `configPrintShrinkPath` ([#531](531), [@sol][sol])
* Allow GHC 9.10 ([#530](530), [@erikd][erikd])
* hedgehog-{example,quickcheck,test-laws}: Raise QuickCheck bound ([#529](529), [@JackKelly-Bellroy][JackKelly-Bellroy])
* Allow to omit icons at the start of important output lines ([#524](524), [@sol][sol])
* Allow to omit source location from report ([#523](523), [@sol][sol])
* Fix "insufficient coverage" message ([#521](521), [@sol][sol])
* Support empty property names ([#520](520), [@sol][sol])
* Allow to disable the `recheckAt`-message ([#519](519), [@sol][sol])
* Remove redundant `Show` constraints: `evalMaybe`, `evalMaybeM` ([#516](516), [@endgame][endgame])
* Relax upper bound on `ansi-terminal` ([#515](515), [@moodmosaic][moodmosaic])
* Report.hs refactoring ([#514](514), [@sol][sol])
* Relax time dependency to < 1.15 ([#513](513), [@tomjaguarpaw][tomjaguarpaw])
* Bump barbies upper bound ([#510](510), [@jchia][jchia])
* Support primitive 0.9 ([#509](509), [@Vekhir][Vekhir])
* Show less context on failure ([#505](505), [@sol][sol])
* Allow GHC 9.8 ([#504](504), [@tomjaguarpaw][tomjaguarpaw])
* Wrap `evalMaybeM` and `evalEitherM` in `withFrozenCallStack` ([#499](499), [@ocharles][ocharles])

## Version 1.4 (2023-08-07)

Expand Down Expand Up @@ -286,14 +303,55 @@
https://github.com/mbg
[jhrcek]:
https://github.com/jhrcek


[parsonsmatt]:
https://github.com/parsonsmatt
[shlevy]:
https://github.com/shlevy


[sol]:
https://github.com/sol
[JackKelly-Bellroy]:
https://github.com/JackKelly-Bellroy
[jchia]:
https://github.com/jchia
[Vekhir]:
https://github.com/Vekhir

[533]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/533
[531]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/531
[530]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/530
[529]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/529
[524]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/524
[523]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/523
[521]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/521
[520]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/520
[519]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/519
[516]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/516
[515]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/515
[514]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/514
[513]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/513
[510]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/510
[509]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/509
[505]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/505
[504]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/504
[499]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/499
[491]:
https://github.com/hedgehogqa/haskell-hedgehog/pull/491
[489]:
Expand Down
2 changes: 1 addition & 1 deletion hedgehog-quickcheck/hedgehog-quickcheck.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ source-repository head
library
build-depends:
base >= 3 && < 5
, hedgehog >= 0.5 && < 1.5
, hedgehog >= 0.5 && < 1.6
, QuickCheck >= 2.7 && < 2.16
, transformers >= 0.4 && < 0.7

Expand Down
2 changes: 1 addition & 1 deletion hedgehog/hedgehog.cabal
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 1.4
version: 1.5

name:
hedgehog
Expand Down
Loading