mirror of
https://github.com/barrucadu/dejafu.git
synced 2024-11-22 21:50:51 +03:00
Prepare release of concurrency, dejafu, and hunit-dejafu
This commit is contained in:
parent
3c1ddeb570
commit
75a02b90da
@ -45,9 +45,9 @@ There are a few different packages under the Déjà Fu umbrella:
|
||||
|
||||
| | Version | Summary |
|
||||
| - | ------- | ------- |
|
||||
| [concurrency][h:conc] | 1.4.0.0 | Typeclasses, functions, and data types for concurrency and STM. |
|
||||
| [dejafu][h:dejafu] | 1.1.0.0 | Systematic testing for Haskell concurrency. |
|
||||
| [hunit-dejafu][h:hunit] | 1.0.1.1 | Deja Fu support for the HUnit test framework. |
|
||||
| [concurrency][h:conc] | 1.4.0.1 | Typeclasses, functions, and data types for concurrency and STM. |
|
||||
| [dejafu][h:dejafu] | 1.1.0.1 | Systematic testing for Haskell concurrency. |
|
||||
| [hunit-dejafu][h:hunit] | 1.0.1.2 | Deja Fu support for the HUnit test framework. |
|
||||
| [tasty-dejafu][h:tasty] | 1.0.1.1 | Deja Fu support for the Tasty test framework. |
|
||||
|
||||
Each package has its own README and CHANGELOG in its subdirectory.
|
||||
|
@ -7,6 +7,18 @@ standard Haskell versioning scheme.
|
||||
.. _PVP: https://pvp.haskell.org/
|
||||
|
||||
|
||||
1.4.0.1 (2018-02-26)
|
||||
--------------------
|
||||
|
||||
* Git: :tag:`concurrency-1.4.0.1`
|
||||
* Hackage: :hackage:`concurrency-1.4.0.1`
|
||||
|
||||
Miscellaneous
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
* The upper bound on :hackage:`exceptions` is <0.10.
|
||||
|
||||
|
||||
1.4.0.0 (2018-01-19)
|
||||
--------------------
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
-- documentation, see http://haskell.org/cabal/users-guide/
|
||||
|
||||
name: concurrency
|
||||
version: 1.4.0.0
|
||||
version: 1.4.0.1
|
||||
synopsis: Typeclasses, functions, and data types for concurrency and STM.
|
||||
|
||||
description:
|
||||
@ -32,7 +32,7 @@ source-repository head
|
||||
source-repository this
|
||||
type: git
|
||||
location: https://github.com/barrucadu/dejafu.git
|
||||
tag: concurrency-1.4.0.0
|
||||
tag: concurrency-1.4.0.1
|
||||
|
||||
library
|
||||
exposed-modules: Control.Monad.Conc.Class
|
||||
|
@ -7,6 +7,20 @@ standard Haskell versioning scheme.
|
||||
.. _PVP: https://pvp.haskell.org/
|
||||
|
||||
|
||||
1.1.0.1 (2018-02-26)
|
||||
--------------------
|
||||
|
||||
* Git: :tag:`dejafu-1.1.0.1`
|
||||
* Hackage: :hackage:`dejafu-1.1.0.1`
|
||||
|
||||
**Contributors:** :u:`qrilka` (:pull:`229`).
|
||||
|
||||
Miscellaneous
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
* The upper bound on :hackage:`exceptions` is <0.10.
|
||||
|
||||
|
||||
1.1.0.0 (2018-02-22)
|
||||
--------------------
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
-- documentation, see http://haskell.org/cabal/users-guide/
|
||||
|
||||
name: dejafu
|
||||
version: 1.1.0.0
|
||||
version: 1.1.0.1
|
||||
synopsis: A library for unit-testing concurrent programs.
|
||||
|
||||
description:
|
||||
@ -33,7 +33,7 @@ source-repository head
|
||||
source-repository this
|
||||
type: git
|
||||
location: https://github.com/barrucadu/dejafu.git
|
||||
tag: dejafu-1.1.0.0
|
||||
tag: dejafu-1.1.0.1
|
||||
|
||||
library
|
||||
exposed-modules: Test.DejaFu
|
||||
|
@ -27,9 +27,9 @@ There are a few different packages under the Déjà Fu umbrella:
|
||||
.. csv-table::
|
||||
:header: "Package", "Version", "Summary"
|
||||
|
||||
":hackage:`concurrency`", "1.4.0.0", "Typeclasses, functions, and data types for concurrency and STM"
|
||||
":hackage:`dejafu`", "1.1.0.0", "Systematic testing for Haskell concurrency"
|
||||
":hackage:`hunit-dejafu`", "1.0.1.1", "Déjà Fu support for the HUnit test framework"
|
||||
":hackage:`concurrency`", "1.4.0.1", "Typeclasses, functions, and data types for concurrency and STM"
|
||||
":hackage:`dejafu`", "1.1.0.1", "Systematic testing for Haskell concurrency"
|
||||
":hackage:`hunit-dejafu`", "1.0.1.2", "Déjà Fu support for the HUnit test framework"
|
||||
":hackage:`tasty-dejafu`", "1.0.1.1", "Déjà Fu support for the tasty test framework"
|
||||
|
||||
|
||||
|
@ -7,6 +7,18 @@ standard Haskell versioning scheme.
|
||||
.. _PVP: https://pvp.haskell.org/
|
||||
|
||||
|
||||
1.0.1.2 (2018-02-26)
|
||||
--------------------
|
||||
|
||||
* Git: :tag:`hunit-dejafu-1.0.1.2`
|
||||
* Hackage: :hackage:`hunit-dejafu-1.0.1.2`
|
||||
|
||||
Miscellaneous
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
* The upper bound on :hackage:`exceptions` is <0.10.
|
||||
|
||||
|
||||
1.0.1.1 (2018-02-22)
|
||||
--------------------
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
-- documentation, see http://haskell.org/cabal/users-guide/
|
||||
|
||||
name: hunit-dejafu
|
||||
version: 1.0.1.1
|
||||
version: 1.0.1.2
|
||||
synopsis: Deja Fu support for the HUnit test framework.
|
||||
|
||||
description:
|
||||
@ -30,7 +30,7 @@ source-repository head
|
||||
source-repository this
|
||||
type: git
|
||||
location: https://github.com/barrucadu/dejafu.git
|
||||
tag: hunit-dejafu-1.0.1.1
|
||||
tag: hunit-dejafu-1.0.1.2
|
||||
|
||||
library
|
||||
exposed-modules: Test.HUnit.DejaFu
|
||||
|
Loading…
Reference in New Issue
Block a user