Prepare for hunit-dejafu-1.0.1.0 release

This commit is contained in:
Michael Walker 2018-02-13 18:53:41 +00:00
parent 7fcebe366c
commit 9cc01477de
5 changed files with 13 additions and 7 deletions

View File

@ -47,7 +47,7 @@ There are a few different packages under the Déjà Fu umbrella:
| - | ------- | ------- |
| [concurrency][h:conc] | 1.4.0.0 | Typeclasses, functions, and data types for concurrency and STM. |
| [dejafu][h:dejafu] | 1.0.0.1 | Systematic testing for Haskell concurrency. |
| [hunit-dejafu][h:hunit] | 1.0.0.0 | Deja Fu support for the HUnit test framework. |
| [hunit-dejafu][h:hunit] | 1.0.1.0 | Deja Fu support for the HUnit test framework. |
| [tasty-dejafu][h:tasty] | 1.0.0.1 | Deja Fu support for the Tasty test framework. |
Each package has its own README and CHANGELOG in its subdirectory.

View File

@ -29,7 +29,7 @@ There are a few different packages under the Déjà Fu umbrella:
":hackage:`concurrency`", "1.4.0.0", "Typeclasses, functions, and data types for concurrency and STM"
":hackage:`dejafu`", "1.0.0.1", "Systematic testing for Haskell concurrency"
":hackage:`hunit-dejafu`", "1.0.0.0", "Déjà Fu support for the HUnit test framework"
":hackage:`hunit-dejafu`", "1.0.1.0", "Déjà Fu support for the HUnit test framework"
":hackage:`tasty-dejafu`", "1.0.0.1", "Déjà Fu support for the tasty test framework"

View File

@ -7,13 +7,19 @@ This project is versioned according to the [Package Versioning Policy](https://p
*de facto* standard Haskell versioning scheme.
unreleased
----------
1.0.1.0
-------
- **Date** 2018-02-13
- **Git tag** [hunit-dejafu-1.0.1.0][]
- **Hackage** https://hackage.haskell.org/package/hunit-dejafu-1.0.1.0
### Test.HUnit.DejaFu
- New `testDejafusDiscard` function (#200).
[hunit-dejafu-1.0.1.0]: https://github.com/barrucadu/dejafu/releases/tag/hunit-dejafu-1.0.1.0
---------------------------------------------------------------------------------------------------

View File

@ -216,7 +216,7 @@ testDejafusWay = testconc (const Nothing)
-- | Variant of 'testDejafusWay' which can selectively discard
-- results, beyond what each predicate already discards.
--
-- @since unreleased
-- @since 1.0.1.0
testDejafusDiscard :: Show b
=> (Either Failure a -> Maybe Discard)
-- ^ Selectively discard results.

View File

@ -2,7 +2,7 @@
-- documentation, see http://haskell.org/cabal/users-guide/
name: hunit-dejafu
version: 1.0.0.0
version: 1.0.1.0
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.0.0
tag: hunit-dejafu-1.0.1.0
library
exposed-modules: Test.HUnit.DejaFu