mirror of
https://github.com/barrucadu/dejafu.git
synced 2024-11-22 21:50:51 +03:00
concurrency-1.8.0.0 & dejafu-2.1.0.1 release
This commit is contained in:
parent
244d2af3a0
commit
3947c19ba3
@ -45,8 +45,8 @@ There are a few different packages under the Déjà Fu umbrella:
|
||||
|
||||
| | Version | Summary |
|
||||
| - | ------- | ------- |
|
||||
| [concurrency][h:conc] | 1.7.0.0 | Typeclasses, functions, and data types for concurrency and STM. |
|
||||
| [dejafu][h:dejafu] | 2.1.0.0 | Systematic testing for Haskell concurrency. |
|
||||
| [concurrency][h:conc] | 1.8.0.0 | Typeclasses, functions, and data types for concurrency and STM. |
|
||||
| [dejafu][h:dejafu] | 2.1.0.1 | Systematic testing for Haskell concurrency. |
|
||||
| [hunit-dejafu][h:hunit] | 2.0.0.1 | Deja Fu support for the HUnit test framework. |
|
||||
| [tasty-dejafu][h:tasty] | 2.0.0.1 | Deja Fu support for the Tasty test framework. |
|
||||
|
||||
|
@ -7,8 +7,11 @@ standard Haskell versioning scheme.
|
||||
.. _PVP: https://pvp.haskell.org/
|
||||
|
||||
|
||||
unreleased
|
||||
----------
|
||||
1.8.0.0 (2019-10-04)
|
||||
--------------------
|
||||
|
||||
* Git: :tag:`concurrency-1.8.0.0`
|
||||
* Hackage: :hackage:`concurrency-1.8.0.0`
|
||||
|
||||
Added
|
||||
~~~~~
|
||||
|
@ -793,7 +793,7 @@ labelMe n = do
|
||||
newtype IsConc m a = IsConc { unIsConc :: m a }
|
||||
deriving (Functor, Applicative, Monad, MonadThrow, MonadCatch, MonadMask)
|
||||
|
||||
-- | @since unreleased
|
||||
-- | @since 1.8.0.0
|
||||
deriving instance MonadFail m => MonadFail (IsConc m)
|
||||
|
||||
-- | Wrap an @m a@ value inside an @IsConc@ if @m@ has a @MonadConc@
|
||||
|
@ -187,7 +187,7 @@ instance MonadSTM STM.STM where
|
||||
newtype IsSTM m a = IsSTM { unIsSTM :: m a }
|
||||
deriving (Functor, Applicative, Alternative, Monad, MonadPlus, Ca.MonadThrow, Ca.MonadCatch)
|
||||
|
||||
-- | @since unreleased
|
||||
-- | @since 1.8.0.0
|
||||
deriving instance MonadFail m => MonadFail (IsSTM m)
|
||||
|
||||
-- | Wrap an @m a@ value inside an @IsSTM@ if @m@ has a @MonadSTM@
|
||||
|
@ -2,7 +2,7 @@
|
||||
-- documentation, see http://haskell.org/cabal/users-guide/
|
||||
|
||||
name: concurrency
|
||||
version: 1.7.0.0
|
||||
version: 1.8.0.0
|
||||
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.7.0.0
|
||||
tag: concurrency-1.8.0.0
|
||||
|
||||
library
|
||||
exposed-modules: Control.Monad.Conc.Class
|
||||
|
@ -7,13 +7,17 @@ standard Haskell versioning scheme.
|
||||
.. _PVP: https://pvp.haskell.org/
|
||||
|
||||
|
||||
unreleased
|
||||
----------
|
||||
2.1.0.1 (2019-10-04)
|
||||
--------------------
|
||||
|
||||
* Git: :tag:`dejafu-2.1.0.1`
|
||||
* Hackage: :hackage:`dejafu-2.1.0.1`
|
||||
|
||||
Miscellaneous
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
* Fixed a compilation error with GHC 8.8
|
||||
* The upper version bound on :hackage:`concurrency` is <1.9.
|
||||
|
||||
|
||||
2.1.0.0 (2019-03-24)
|
||||
|
@ -2,7 +2,7 @@
|
||||
-- documentation, see http://haskell.org/cabal/users-guide/
|
||||
|
||||
name: dejafu
|
||||
version: 2.1.0.0
|
||||
version: 2.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-2.1.0.0
|
||||
tag: dejafu-2.1.0.1
|
||||
|
||||
library
|
||||
exposed-modules: Test.DejaFu
|
||||
@ -59,7 +59,7 @@ library
|
||||
-- other-modules:
|
||||
-- other-extensions:
|
||||
build-depends: base >=4.9 && <5
|
||||
, concurrency >=1.7 && <1.8
|
||||
, concurrency >=1.7 && <1.9
|
||||
, containers >=0.5 && <0.7
|
||||
, contravariant >=1.2 && <1.6
|
||||
, deepseq >=1.1 && <2
|
||||
|
@ -27,8 +27,8 @@ There are a few different packages under the Déjà Fu umbrella:
|
||||
.. csv-table::
|
||||
:header: "Package", "Version", "Summary"
|
||||
|
||||
":hackage:`concurrency`", "1.7.0.0", "Typeclasses, functions, and data types for concurrency and STM"
|
||||
":hackage:`dejafu`", "2.1.0.0", "Systematic testing for Haskell concurrency"
|
||||
":hackage:`concurrency`", "1.8.0.0", "Typeclasses, functions, and data types for concurrency and STM"
|
||||
":hackage:`dejafu`", "2.1.0.1", "Systematic testing for Haskell concurrency"
|
||||
":hackage:`hunit-dejafu`", "2.0.0.1", "Déjà Fu support for the HUnit test framework"
|
||||
":hackage:`tasty-dejafu`", "2.0.0.1", "Déjà Fu support for the tasty test framework"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user