Skip to content

Commit

Permalink
Release tasty-1.5.3, tasty-quickcheck-0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Bodigrim committed Jan 5, 2025
1 parent 157f42c commit f838314
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 15 deletions.
10 changes: 10 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
--------------

Expand Down
2 changes: 1 addition & 1 deletion core/tasty.cabal
Original file line number Diff line number Diff line change
@@ -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
Expand Down
10 changes: 8 additions & 2 deletions quickcheck/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
--------------
Expand Down
16 changes: 4 additions & 12 deletions quickcheck/tasty-quickcheck.cabal
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
-- 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.
.
license: MIT
license-file: LICENSE
author: Roman Cheplyaka <[email protected]>
maintainer: Roman Cheplyaka <[email protected]>
-- copyright:
homepage: https://github.com/UnkindPartition/tasty
bug-reports: https://github.com/UnkindPartition/tasty/issues
category: Testing
Expand All @@ -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
Expand All @@ -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

0 comments on commit f838314

Please sign in to comment.