dejafu-0.9.1.0 release

This commit is contained in:
Michael Walker 2017-11-26 22:41:54 +00:00
parent c88ec04ec2
commit 2fa165ac6f
6 changed files with 14 additions and 8 deletions

View File

@ -46,7 +46,7 @@ There are a few different packages under the Déjà Fu umbrella:
| | Version | Summary |
| - | ------- | ------- |
| [concurrency][h:conc] | 1.2.2.0 | Typeclasses, functions, and data types for concurrency and STM. |
| [dejafu][h:dejafu] | 0.9.0.3 | Systematic testing for Haskell concurrency. |
| [dejafu][h:dejafu] | 0.9.1.0 | Systematic testing for Haskell concurrency. |
| [hunit-dejafu][h:hunit] | 0.7.0.2 | Deja Fu support for the HUnit test framework. |
| [tasty-dejafu][h:tasty] | 0.7.0.3 | Deja Fu support for the Tasty test framework. |

View File

@ -7,8 +7,12 @@ This project is versioned according to the [Package Versioning Policy](https://p
*de facto* standard Haskell versioning scheme.
unreleased
----------
0.9.1.0
-------
- **Date** 2017-11-26
- **Git tag** [dejafu-0.9.1.0][]
- **Hackage** https://hackage.haskell.org/package/dejafu-0.9.1.0
### Test.DejaFu.Common
@ -23,6 +27,8 @@ unreleased
- Add a missing `MonadFail` instance.
[dejafu-0.9.1.0]: https://github.com/barrucadu/dejafu/releases/tag/dejafu-0.9.1.0
---------------------------------------------------------------------------------------------------

View File

@ -74,7 +74,7 @@ import qualified Control.Monad.Fail as Fail
newtype ConcT r n a = C { unC :: M n r a } deriving (Functor, Applicative, Monad)
#if MIN_VERSION_base(4,9,0)
-- | @since unreleased
-- | @since 0.9.1.0
instance Fail.MonadFail (ConcT r n) where
fail = C . fail
#endif

View File

@ -47,7 +47,7 @@ import qualified Control.Monad.Fail as Fail
newtype STMLike n r a = S { runSTM :: M n r a } deriving (Functor, Applicative, Monad)
#if MIN_VERSION_base(4,9,0)
-- | @since unreleased
-- | @since 0.9.1.0
instance Fail.MonadFail (STMLike r n) where
fail = S . fail
#endif

View File

@ -2,7 +2,7 @@
-- documentation, see http://haskell.org/cabal/users-guide/
name: dejafu
version: 0.9.0.3
version: 0.9.1.0
synopsis: Systematic testing for Haskell concurrency.
description:
@ -37,7 +37,7 @@ source-repository head
source-repository this
type: git
location: https://github.com/barrucadu/dejafu.git
tag: dejafu-0.9.0.3
tag: dejafu-0.9.1.0
library
exposed-modules: Test.DejaFu

View File

@ -36,7 +36,7 @@ There are a few different packages under the Déjà Fu umbrella:
:header: "Package", "Version", "Summary"
"concurrency_", "1.2.2.0", "Typeclasses, functions, and data types for concurrency and STM"
"dejafu_", "0.9.0.3", "Systematic testing for Haskell concurrency"
"dejafu_", "0.9.1.0", "Systematic testing for Haskell concurrency"
"hunit-dejafu_", "0.7.0.2", "Déjà Fu support for the HUnit test framework"
"tasty-dejafu_", "0.7.0.3", "Déjà Fu support for the tasty test framework"