From b3eafffc56479c8d256a0bcd520b124668c0d544 Mon Sep 17 00:00:00 2001 From: Michael Walker Date: Thu, 14 May 2020 13:42:18 +0100 Subject: [PATCH] hunit-dejafu-2.0.0.3, tasty-dejafu-2.0.0.4 --- README.markdown | 4 ++-- doc/getting_started.rst | 4 ++-- hunit-dejafu/CHANGELOG.rst | 14 +++++++++++++- hunit-dejafu/hunit-dejafu.cabal | 8 ++++---- tasty-dejafu/CHANGELOG.rst | 12 ++++++++++++ tasty-dejafu/tasty-dejafu.cabal | 8 ++++---- 6 files changed, 37 insertions(+), 13 deletions(-) diff --git a/README.markdown b/README.markdown index 68814a8..e7d038e 100644 --- a/README.markdown +++ b/README.markdown @@ -47,8 +47,8 @@ There are a few different packages under the Déjà Fu umbrella: | - | ------- | ------- | | [concurrency][h:conc] | 1.11.0.0 | Typeclasses, functions, and data types for concurrency and STM. | | [dejafu][h:dejafu] | 2.3.0.0 | Systematic testing for Haskell concurrency. | -| [hunit-dejafu][h:hunit] | 2.0.0.2 | Deja Fu support for the HUnit test framework. | -| [tasty-dejafu][h:tasty] | 2.0.0.3 | Deja Fu support for the Tasty test framework. | +| [hunit-dejafu][h:hunit] | 2.0.0.3 | Deja Fu support for the HUnit test framework. | +| [tasty-dejafu][h:tasty] | 2.0.0.4 | Deja Fu support for the Tasty test framework. | Each package has its own README and CHANGELOG in its subdirectory. diff --git a/doc/getting_started.rst b/doc/getting_started.rst index 6265089..79616bb 100644 --- a/doc/getting_started.rst +++ b/doc/getting_started.rst @@ -29,8 +29,8 @@ There are a few different packages under the Déjà Fu umbrella: ":hackage:`concurrency`", "1.11.0.0", "Typeclasses, functions, and data types for concurrency and STM" ":hackage:`dejafu`", "2.3.0.0", "Systematic testing for Haskell concurrency" - ":hackage:`hunit-dejafu`", "2.0.0.2", "Déjà Fu support for the HUnit test framework" - ":hackage:`tasty-dejafu`", "2.0.0.3", "Déjà Fu support for the tasty test framework" + ":hackage:`hunit-dejafu`", "2.0.0.3", "Déjà Fu support for the HUnit test framework" + ":hackage:`tasty-dejafu`", "2.0.0.4", "Déjà Fu support for the tasty test framework" Installation diff --git a/hunit-dejafu/CHANGELOG.rst b/hunit-dejafu/CHANGELOG.rst index 58b08fc..e025523 100644 --- a/hunit-dejafu/CHANGELOG.rst +++ b/hunit-dejafu/CHANGELOG.rst @@ -7,7 +7,19 @@ standard Haskell versioning scheme. .. _PVP: https://pvp.haskell.org/ -2.0.0.2 (2020-10-05) +2.0.0.3 (2020-05-10) +-------------------- + +* Git: :tag:`hunit-dejafu-2.0.0.3` +* Hackage: :hackage:`hunit-dejafu-2.0.0.3` + +Miscellaneous +~~~~~~~~~~~~~ + +* The upper bound on :hackage:`dejafu` is <2.4 + + +2.0.0.2 (2020-05-10) -------------------- * Git: :tag:`hunit-dejafu-2.0.0.2` diff --git a/hunit-dejafu/hunit-dejafu.cabal b/hunit-dejafu/hunit-dejafu.cabal index 7acd626..f5eb39f 100755 --- a/hunit-dejafu/hunit-dejafu.cabal +++ b/hunit-dejafu/hunit-dejafu.cabal @@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: hunit-dejafu -version: 2.0.0.2 +version: 2.0.0.3 synopsis: Deja Fu support for the HUnit test framework. description: @@ -17,7 +17,7 @@ license: MIT license-file: LICENSE author: Michael Walker maintainer: mike@barrucadu.co.uk -copyright: (c) 2015--2017 Michael Walker +copyright: (c) 2015--2020 Michael Walker category: Testing build-type: Simple extra-source-files: README.markdown CHANGELOG.rst @@ -30,7 +30,7 @@ source-repository head source-repository this type: git location: https://github.com/barrucadu/dejafu.git - tag: hunit-dejafu-2.0.0.2 + tag: hunit-dejafu-2.0.0.3 library exposed-modules: Test.HUnit.DejaFu @@ -38,7 +38,7 @@ library -- other-extensions: build-depends: base >=4.9 && <5 , exceptions >=0.7 && <0.11 - , dejafu >=2.0 && <2.3 + , dejafu >=2.0 && <2.4 , HUnit >=1.3.1 && <1.7 -- hs-source-dirs: default-language: Haskell2010 diff --git a/tasty-dejafu/CHANGELOG.rst b/tasty-dejafu/CHANGELOG.rst index 079aa29..23934a9 100644 --- a/tasty-dejafu/CHANGELOG.rst +++ b/tasty-dejafu/CHANGELOG.rst @@ -7,6 +7,18 @@ standard Haskell versioning scheme. .. _PVP: https://pvp.haskell.org/ +2.0.0.4 (2020-05-14) +-------------------- + +* Git: :tag:`tasty-dejafu-2.0.0.4` +* Hackage: :hackage:`tasty-dejafu-2.0.0.4` + +Miscellaneous +~~~~~~~~~~~~~ + +* The upper bound on :hackage:`dejafu` is <2.4 + + 2.0.0.3 (2020-05-10) -------------------- diff --git a/tasty-dejafu/tasty-dejafu.cabal b/tasty-dejafu/tasty-dejafu.cabal index 6896489..1b87520 100755 --- a/tasty-dejafu/tasty-dejafu.cabal +++ b/tasty-dejafu/tasty-dejafu.cabal @@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: tasty-dejafu -version: 2.0.0.3 +version: 2.0.0.4 synopsis: Deja Fu support for the Tasty test framework. description: @@ -17,7 +17,7 @@ license: MIT license-file: LICENSE author: Michael Walker maintainer: mike@barrucadu.co.uk -copyright: (c) 2015--2017 Michael Walker +copyright: (c) 2015--2020 Michael Walker category: Testing build-type: Simple extra-source-files: README.markdown CHANGELOG.rst @@ -30,14 +30,14 @@ source-repository head source-repository this type: git location: https://github.com/barrucadu/dejafu.git - tag: tasty-dejafu-2.0.0.3 + tag: tasty-dejafu-2.0.0.4 library exposed-modules: Test.Tasty.DejaFu -- other-modules: -- other-extensions: build-depends: base >=4.9 && <5 - , dejafu >=2.0 && <2.3 + , dejafu >=2.0 && <2.4 , random >=1.0 && <1.2 , tagged >=0.8 && <0.9 , tasty >=0.10 && <1.4