Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
barrucadu committed Aug 21, 2017
1 parent 26bdb96 commit 05a8f4a
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.markdown
Expand Up @@ -45,7 +45,7 @@ Packages
| | Version | Intended Users | Summary |
| --- | ------- | -------------- | ------- |
| concurrency [[docs][d:conc]] [[hackage][h:conc]] | 1.1.2.1 | Authors | Typeclasses, functions, and data types for concurrency and STM. |
| dejafu [[docs][d:dejafu]] [[hackage][h:dejafu]] | 0.7.1.1 | Testers | Systematic testing for Haskell concurrency. |
| dejafu [[docs][d:dejafu]] [[hackage][h:dejafu]] | 0.7.1.2 | Testers | Systematic testing for Haskell concurrency. |
| hunit-dejafu [[docs][d:hunit]] [[hackage][h:hunit]] | 0.7.0.0 | Testers | Deja Fu support for the HUnit test framework. |
| tasty-dejafu [[docs][d:tasty]] [[hackage][h:tasty]] | 0.7.0.0 | Testers | Deja Fu support for the Tasty test framework. |

Expand Down
8 changes: 7 additions & 1 deletion dejafu/CHANGELOG.markdown
Expand Up @@ -7,14 +7,20 @@ This project is versioned according to the [Package Versioning Policy](https://p
*de facto* standard Haskell versioning scheme.


unreleased
0.7.1.2
----------

- **Date** 2017-08-21
- **Git tag** [dejafu-0.7.1.2][]
- **Hackage** https://hackage.haskell.org/package/dejafu-0.7.1.2

### Miscellaneous

- Errors thrown with `Control.Monad.fail` no longer terminate testing, and are now correctly treated
as asynchronous exceptions.

[dejafu-0.7.1.2]: https://github.com/barrucadu/dejafu/releases/tag/dejafu-0.7.1.2


---------------------------------------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion dejafu/Test/DejaFu/Conc/Internal/Common.hs
Expand Up @@ -51,7 +51,7 @@ instance Monad (M n r) where
#if MIN_VERSION_base(4,9,0)
fail = Fail.fail

-- | @since unreleased
-- | @since 0.7.1.2
instance Fail.MonadFail (M n r) where
#endif
fail e = cont (\_ -> AThrow (MonadFailException e))
Expand Down
2 changes: 1 addition & 1 deletion dejafu/Test/DejaFu/STM/Internal.hs
Expand Up @@ -52,7 +52,7 @@ instance Monad (M n r) where
#if MIN_VERSION_base(4,9,0)
fail = Fail.fail

-- | @since unreleased
-- | @since 0.7.1.2
instance Fail.MonadFail (M n r) where
#endif
fail e = cont (\_ -> SThrow (MonadFailException e))
Expand Down
4 changes: 2 additions & 2 deletions dejafu/dejafu.cabal
Expand Up @@ -2,7 +2,7 @@
-- documentation, see http://haskell.org/cabal/users-guide/

name: dejafu
version: 0.7.1.1
version: 0.7.1.2
synopsis: Systematic testing for Haskell concurrency.

description:
Expand Down Expand Up @@ -37,7 +37,7 @@ source-repository head
source-repository this
type: git
location: https://github.com/barrucadu/dejafu.git
tag: dejafu-0.7.1.1
tag: dejafu-0.7.1.2

library
exposed-modules: Test.DejaFu
Expand Down
2 changes: 1 addition & 1 deletion doc/getting_started.rst
Expand Up @@ -36,7 +36,7 @@ There are a few different packages under the Déjà Fu umbrella:
:header: "Package", "Version", "Summary"

"concurrency_", "1.1.2.1", "Typeclasses, functions, and data types for concurrency and STM"
"dejafu_", "0.7.1.0", "Systematic testing for Haskell concurrency"
"dejafu_", "0.7.1.2", "Systematic testing for Haskell concurrency"
"hunit-dejafu_", "0.7.0.0", "Déjà Fu support for the HUnit test framework"
"tasty-dejafu_", "0.7.0.0", "Déjà Fu support for the tasty test framework"

Expand Down

0 comments on commit 05a8f4a

Please sign in to comment.