Skip to content

Commit

Permalink
hunit-dejafu-0.5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
barrucadu committed Apr 8, 2017
1 parent dd5748e commit 9af76cc
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Packages
| --- | ------- | -------------- | ------- |
| concurrency [[docs][d:conc]] [[hackage][h:conc]] | 1.1.2.0 | Authors | Typeclasses, functions, and data types for concurrency and STM. |
| dejafu [[docs][d:dejafu]] [[hackage][h:dejafu]] | 0.6.0.0 | Testers | Systematic testing for Haskell concurrency. |
| hunit-dejafu [[docs][d:hunit]] [[hackage][h:hunit]] | 0.4.0.1 | Testers | Deja Fu support for the HUnit test framework. |
| hunit-dejafu [[docs][d:hunit]] [[hackage][h:hunit]] | 0.5.0.0 | Testers | Deja Fu support for the HUnit test framework. |
| tasty-dejafu [[docs][d:tasty]] [[hackage][h:tasty]] | 0.4.0.0 | Testers | Deja Fu support for the Tasty test framework. |

Each package has its own README and CHANGELOG in its subdirectory.
Expand Down
9 changes: 7 additions & 2 deletions hunit-dejafu/CHANGELOG.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,10 @@ This project is versioned according to the [Package Versioning Policy](https://p
*de facto* standard Haskell versioning scheme.


unreleased
----------
0.5.0.0 [2017-04-08] (git tag: [hunit-dejafu-0.5.0.0][])
-------

https://hackage.haskell.org/package/hunit-dejafu-0.5.0.0

### Test.HUnit.DejaFu

Expand All @@ -18,6 +20,9 @@ unreleased

- There is now a changelog.
- Every definition and instance now has a Haddock "@since" annotation.
- Only dejafu 0.6 is supported.

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


---------------------------------------------------------------------------------------------------
Expand Down
12 changes: 6 additions & 6 deletions hunit-dejafu/Test/HUnit/DejaFu.hs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ testAuto = testAutoWay defaultWay defaultMemType
-- | Variant of 'testAuto' which tests a computation under a given
-- execution way and memory model.
--
-- @since unreleased
-- @since 0.5.0.0
testAutoWay :: (Eq a, Show a)
=> Way
-- ^ How to execute the concurrent program.
Expand All @@ -154,7 +154,7 @@ testAutoIO = testAutoWayIO defaultWay defaultMemType

-- | Variant of 'testAutoWay' for computations which do 'IO'.
--
-- @since unreleased
-- @since 0.5.0.0
testAutoWayIO :: (Eq a, Show a)
=> Way -> MemType -> Conc.ConcIO a -> Test
testAutoWayIO way memtype concio =
Expand Down Expand Up @@ -184,7 +184,7 @@ testDejafu = testDejafuWay defaultWay defaultMemType
-- | Variant of 'testDejafu' which takes a way to execute the program
-- and a memory model.
--
-- @since unreleased
-- @since 0.5.0.0
testDejafuWay :: Show a
=> Way
-- ^ How to execute the concurrent program.
Expand Down Expand Up @@ -216,7 +216,7 @@ testDejafus = testDejafusWay defaultWay defaultMemType
-- | Variant of 'testDejafus' which takes a way to execute the program
-- and a memory model.
--
-- @since unreleased
-- @since 0.5.0.0
testDejafusWay :: Show a
=> Way
-- ^ How to execute the concurrent program.
Expand All @@ -237,7 +237,7 @@ testDejafuIO = testDejafuWayIO defaultWay defaultMemType

-- | Variant of 'testDejafuWay' for computations which do 'IO'.
--
-- @since unreleased
-- @since 0.5.0.0
testDejafuWayIO :: Show a
=> Way -> MemType -> Conc.ConcIO a -> String -> Predicate a -> Test
testDejafuWayIO way memtype concio name p =
Expand All @@ -251,7 +251,7 @@ testDejafusIO = testDejafusWayIO defaultWay defaultMemType

-- | Variant of 'dejafusWay' for computations which do 'IO'.
--
-- @since unreleased
-- @since 0.5.0.0
testDejafusWayIO :: Show a
=> Way -> MemType -> Conc.ConcIO a -> [(String, Predicate a)] -> Test
testDejafusWayIO = testio
Expand Down
6 changes: 3 additions & 3 deletions hunit-dejafu/hunit-dejafu.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-- documentation, see http://haskell.org/cabal/users-guide/

name: hunit-dejafu
version: 0.4.0.1
version: 0.5.0.0
synopsis: Deja Fu support for the HUnit test framework.

description:
Expand Down Expand Up @@ -30,15 +30,15 @@ source-repository head
source-repository this
type: git
location: https://github.com/barrucadu/dejafu.git
tag: hunit-dejafu-0.4.0.1
tag: hunit-dejafu-0.5.0.0

library
exposed-modules: Test.HUnit.DejaFu
-- other-modules:
-- other-extensions:
build-depends: base >=4.8 && <5
, exceptions >=0.7 && <0.9
, dejafu >=0.5 && <0.6
, dejafu >=0.6 && <0.7
, HUnit >=1.2 && <1.7
-- hs-source-dirs:
default-language: Haskell2010

0 comments on commit 9af76cc

Please sign in to comment.