From f838314360d1c8f20f2919b376a5d2672aedc893 Mon Sep 17 00:00:00 2001 From: Bodigrim Date: Sat, 4 Jan 2025 17:58:06 +0000 Subject: [PATCH] Release tasty-1.5.3, tasty-quickcheck-0.11.1 --- core/CHANGELOG.md | 10 ++++++++++ core/tasty.cabal | 2 +- quickcheck/CHANGELOG.md | 10 ++++++++-- quickcheck/tasty-quickcheck.cabal | 16 ++++------------ 4 files changed, 23 insertions(+), 15 deletions(-) diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 132547c9..1439fab0 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -1,6 +1,16 @@ Changes ======= +Version 1.5.3 +-------------- + +_2025-01-05_ + +* Console reporter: disable line wrapping + ([#433](https://github.com/UnkindPartition/tasty/pull/433)). +* Console reporter: force flushing of stdout after `showCursor` + ([#436](https://github.com/UnkindPartition/tasty/pull/436)). + Version 1.5.2 -------------- diff --git a/core/tasty.cabal b/core/tasty.cabal index a15ed26c..cdd9b336 100644 --- a/core/tasty.cabal +++ b/core/tasty.cabal @@ -1,6 +1,6 @@ cabal-version: >=1.10 name: tasty -version: 1.5.2 +version: 1.5.3 synopsis: Modern and extensible testing framework description: Tasty is a modern testing framework for Haskell. It lets you combine your unit tests, golden diff --git a/quickcheck/CHANGELOG.md b/quickcheck/CHANGELOG.md index 21915482..b1a2259f 100644 --- a/quickcheck/CHANGELOG.md +++ b/quickcheck/CHANGELOG.md @@ -4,8 +4,14 @@ Changes Version 0.11.1 -------------- -* Add timeouts for individual tests within a property. -* Define `showDefaultValue` for `QuickCheckTests`, `QuickCheckMaxSize` and `QuickCheckMaxRatio`. +* Add timeouts for individual tests within a property + ([#425](https://github.com/UnkindPartition/tasty/pull/425)). +* Define `showDefaultValue` for `QuickCheckTests`, + `QuickCheckMaxSize` and `QuickCheckMaxRatio` + ([#428](https://github.com/UnkindPartition/tasty/pull/428)). +* Print the number of QuickCheck shrinks in the progress message + ([#431](https://github.com/UnkindPartition/tasty/pull/431)). +* Drop support for GHC 7.10. Version 0.11 -------------- diff --git a/quickcheck/tasty-quickcheck.cabal b/quickcheck/tasty-quickcheck.cabal index 63cb724b..8e90c960 100644 --- a/quickcheck/tasty-quickcheck.cabal +++ b/quickcheck/tasty-quickcheck.cabal @@ -1,8 +1,5 @@ --- Initial tasty-quickcheck.cabal generated by cabal init. For further --- documentation, see http://haskell.org/cabal/users-guide/ - name: tasty-quickcheck -version: 0.11 +version: 0.11.1 synopsis: QuickCheck support for the Tasty test framework. description: QuickCheck support for the Tasty test framework. . @@ -10,7 +7,6 @@ license: MIT license-file: LICENSE author: Roman Cheplyaka maintainer: Roman Cheplyaka --- copyright: homepage: https://github.com/UnkindPartition/tasty bug-reports: https://github.com/UnkindPartition/tasty/issues category: Testing @@ -25,16 +21,14 @@ Source-repository head library exposed-modules: Test.Tasty.QuickCheck - -- other-modules: other-extensions: GeneralizedNewtypeDeriving, DeriveDataTypeable - build-depends: base >= 4.8 && < 5, + build-depends: base >= 4.9 && < 5, tagged < 0.9, tasty >= 1.5.1 && < 1.6, random < 1.3, QuickCheck >= 2.10 && < 2.16, optparse-applicative < 0.19 - -- hs-source-dirs: default-language: Haskell2010 default-extensions: CPP ghc-options: -Wall @@ -50,12 +44,10 @@ test-suite test main-is: test.hs build-depends: - base >= 4.7 && < 5 + base , regex-tdfa >= 1.3 && < 1.4 - , tasty >= 1.5 + , tasty , tasty-quickcheck , tasty-hunit , QuickCheck ghc-options: -Wall - if (!impl(ghc >= 8.0) || os(windows)) - buildable: False