packages feed

tasty-dejafu 1.2.0.7 → 1.2.0.8

raw patch · 2 files changed

+15/−3 lines, 2 filesdep ~tastyPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: tasty

API changes (from Hackage documentation)

- Test.Tasty.DejaFu: instance Test.Tasty.Core.IsTest (Test.DejaFu.Conc.ConcIO (GHC.Base.Maybe GHC.Base.String))
+ Test.Tasty.DejaFu: -- | The seed value type. This is used to construct the concurrent states.
+ Test.Tasty.DejaFu: instance Test.Tasty.Core.IsTest (Test.DejaFu.Conc.ConcIO (GHC.Maybe.Maybe GHC.Base.String))
- Test.Tasty.DejaFu: ProPredicate :: Either Failure a -> Maybe Discard -> [(Either Failure a, Trace)] -> Result b -> ProPredicate a b
+ Test.Tasty.DejaFu: ProPredicate :: (Either Failure a -> Maybe Discard) -> ([(Either Failure a, Trace)] -> Result b) -> ProPredicate a b
- Test.Tasty.DejaFu: Sig :: x -> ConcIO s -> s -> x -> ConcIO o -> s -> x -> ConcIO () -> s -> ConcIO () -> Sig s o x
+ Test.Tasty.DejaFu: Sig :: (x -> ConcIO s) -> (s -> x -> ConcIO o) -> (s -> x -> ConcIO ()) -> (s -> ConcIO ()) -> Sig s o x
- Test.Tasty.DejaFu: type family X a :: *;
+ Test.Tasty.DejaFu: type family X a :: Type;

Files

CHANGELOG.rst view
@@ -7,6 +7,18 @@ .. _PVP: https://pvp.haskell.org/  +1.2.0.8 (2018-12-02)+--------------------++* Git: :tag:`tasty-dejafu-1.2.0.8`+* Hackage: :hackage:`tasty-dejafu-1.2.0.8`++Miscellaneous+~~~~~~~~~~~~~++* The upper bound on :hackage:`tasty` is <1.3.++ 1.2.0.7 (2018-07-01) -------------------- 
tasty-dejafu.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                tasty-dejafu-version:             1.2.0.7+version:             1.2.0.8 synopsis:            Deja Fu support for the Tasty test framework.  description:@@ -30,7 +30,7 @@ source-repository this   type:     git   location: https://github.com/barrucadu/dejafu.git-  tag:      tasty-dejafu-1.2.0.7+  tag:      tasty-dejafu-1.2.0.8  library   exposed-modules:     Test.Tasty.DejaFu@@ -40,6 +40,6 @@                      , dejafu >=1.5  && <1.12                      , random >=1.0  && <1.2                      , tagged >=0.8  && <0.9-                     , tasty  >=0.10 && <1.2+                     , tasty  >=0.10 && <1.3   -- hs-source-dirs:         default-language:    Haskell2010