hunit-dejafu-2.0.0.3, tasty-dejafu-2.0.0.4

This commit is contained in:
Michael Walker 2020-05-14 13:42:18 +01:00
parent 555f3e682b
commit b3eafffc56
6 changed files with 37 additions and 13 deletions

View File

@ -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. | | [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. | | [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. | | [hunit-dejafu][h:hunit] | 2.0.0.3 | Deja Fu support for the HUnit test framework. |
| [tasty-dejafu][h:tasty] | 2.0.0.3 | Deja Fu support for the Tasty 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. Each package has its own README and CHANGELOG in its subdirectory.

View File

@ -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:`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:`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:`hunit-dejafu`", "2.0.0.3", "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:`tasty-dejafu`", "2.0.0.4", "Déjà Fu support for the tasty test framework"
Installation Installation

View File

@ -7,7 +7,19 @@ standard Haskell versioning scheme.
.. _PVP: https://pvp.haskell.org/ .. _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` * Git: :tag:`hunit-dejafu-2.0.0.2`

View File

@ -2,7 +2,7 @@
-- documentation, see http://haskell.org/cabal/users-guide/ -- documentation, see http://haskell.org/cabal/users-guide/
name: hunit-dejafu name: hunit-dejafu
version: 2.0.0.2 version: 2.0.0.3
synopsis: Deja Fu support for the HUnit test framework. synopsis: Deja Fu support for the HUnit test framework.
description: description:
@ -17,7 +17,7 @@ license: MIT
license-file: LICENSE license-file: LICENSE
author: Michael Walker author: Michael Walker
maintainer: mike@barrucadu.co.uk maintainer: mike@barrucadu.co.uk
copyright: (c) 2015--2017 Michael Walker copyright: (c) 2015--2020 Michael Walker
category: Testing category: Testing
build-type: Simple build-type: Simple
extra-source-files: README.markdown CHANGELOG.rst extra-source-files: README.markdown CHANGELOG.rst
@ -30,7 +30,7 @@ source-repository head
source-repository this source-repository this
type: git type: git
location: https://github.com/barrucadu/dejafu.git location: https://github.com/barrucadu/dejafu.git
tag: hunit-dejafu-2.0.0.2 tag: hunit-dejafu-2.0.0.3
library library
exposed-modules: Test.HUnit.DejaFu exposed-modules: Test.HUnit.DejaFu
@ -38,7 +38,7 @@ library
-- other-extensions: -- other-extensions:
build-depends: base >=4.9 && <5 build-depends: base >=4.9 && <5
, exceptions >=0.7 && <0.11 , exceptions >=0.7 && <0.11
, dejafu >=2.0 && <2.3 , dejafu >=2.0 && <2.4
, HUnit >=1.3.1 && <1.7 , HUnit >=1.3.1 && <1.7
-- hs-source-dirs: -- hs-source-dirs:
default-language: Haskell2010 default-language: Haskell2010

View File

@ -7,6 +7,18 @@ standard Haskell versioning scheme.
.. _PVP: https://pvp.haskell.org/ .. _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) 2.0.0.3 (2020-05-10)
-------------------- --------------------

View File

@ -2,7 +2,7 @@
-- documentation, see http://haskell.org/cabal/users-guide/ -- documentation, see http://haskell.org/cabal/users-guide/
name: tasty-dejafu name: tasty-dejafu
version: 2.0.0.3 version: 2.0.0.4
synopsis: Deja Fu support for the Tasty test framework. synopsis: Deja Fu support for the Tasty test framework.
description: description:
@ -17,7 +17,7 @@ license: MIT
license-file: LICENSE license-file: LICENSE
author: Michael Walker author: Michael Walker
maintainer: mike@barrucadu.co.uk maintainer: mike@barrucadu.co.uk
copyright: (c) 2015--2017 Michael Walker copyright: (c) 2015--2020 Michael Walker
category: Testing category: Testing
build-type: Simple build-type: Simple
extra-source-files: README.markdown CHANGELOG.rst extra-source-files: README.markdown CHANGELOG.rst
@ -30,14 +30,14 @@ source-repository head
source-repository this source-repository this
type: git type: git
location: https://github.com/barrucadu/dejafu.git location: https://github.com/barrucadu/dejafu.git
tag: tasty-dejafu-2.0.0.3 tag: tasty-dejafu-2.0.0.4
library library
exposed-modules: Test.Tasty.DejaFu exposed-modules: Test.Tasty.DejaFu
-- other-modules: -- other-modules:
-- other-extensions: -- other-extensions:
build-depends: base >=4.9 && <5 build-depends: base >=4.9 && <5
, dejafu >=2.0 && <2.3 , dejafu >=2.0 && <2.4
, random >=1.0 && <1.2 , random >=1.0 && <1.2
, tagged >=0.8 && <0.9 , tagged >=0.8 && <0.9
, tasty >=0.10 && <1.4 , tasty >=0.10 && <1.4