tasty-dejafu 2.0.0.6 → 2.0.0.7
raw patch · 2 files changed
+16/−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: expectFailure :: () => RefinementProperty o x -> RefinementProperty o x
+ Test.Tasty.DejaFu: expectFailure :: RefinementProperty o x -> RefinementProperty o x
- Test.Tasty.DejaFu: inspectIORef :: () => ModelIORef n a -> Invariant n a
+ Test.Tasty.DejaFu: inspectIORef :: forall (n :: Type -> Type) a. ModelIORef n a -> Invariant n a
- Test.Tasty.DejaFu: inspectMVar :: () => ModelMVar n a -> Invariant n (Maybe a)
+ Test.Tasty.DejaFu: inspectMVar :: forall (n :: Type -> Type) a. ModelMVar n a -> Invariant n (Maybe a)
- Test.Tasty.DejaFu: inspectTVar :: () => ModelTVar n a -> Invariant n a
+ Test.Tasty.DejaFu: inspectTVar :: forall (n :: Type -> Type) a. ModelTVar n a -> Invariant n a
- Test.Tasty.DejaFu: registerInvariant :: () => Invariant n a -> Program Basic n ()
+ Test.Tasty.DejaFu: registerInvariant :: forall (n :: Type -> Type) a. Invariant n a -> Program Basic n ()
- Test.Tasty.DejaFu: type family X a :: Type;
+ Test.Tasty.DejaFu: type family X a;
- Test.Tasty.DejaFu: withSetup :: () => Program Basic n x -> (x -> Program Basic n a) -> Program (WithSetup x) n a
+ Test.Tasty.DejaFu: withSetup :: forall (n :: Type -> Type) x a. Program Basic n x -> (x -> Program Basic n a) -> Program (WithSetup x) n a
- Test.Tasty.DejaFu: withSetupAndTeardown :: () => Program Basic n x -> (x -> Either Condition y -> Program Basic n a) -> (x -> Program Basic n y) -> Program (WithSetupAndTeardown x y) n a
+ Test.Tasty.DejaFu: withSetupAndTeardown :: forall (n :: Type -> Type) x y a. Program Basic n x -> (x -> Either Condition y -> Program Basic n a) -> (x -> Program Basic n y) -> Program (WithSetupAndTeardown x y) n a
- Test.Tasty.DejaFu: withTeardown :: () => (x -> Either Condition y -> Program Basic n a) -> Program (WithSetup x) n y -> Program (WithSetupAndTeardown x y) n a
+ Test.Tasty.DejaFu: withTeardown :: forall x y (n :: Type -> Type) a. (x -> Either Condition y -> Program Basic n a) -> Program (WithSetup x) n y -> Program (WithSetupAndTeardown x y) n a
Files
- CHANGELOG.rst +13/−0
- tasty-dejafu.cabal +3/−3
CHANGELOG.rst view
@@ -6,6 +6,19 @@ .. _PVP: https://pvp.haskell.org/ ++2.0.0.7 (2020-12-27)+--------------------++* Git: :tag:`tasty-dejafu-2.0.0.7`+* Hackage: :hackage:`tasty-dejafu-2.0.0.7`++Miscellaneous+~~~~~~~~~~~~~++* The upper bound on :hackage:`tasty` is <1.5.++ 2.0.0.6 (2020-07-01) --------------------
tasty-dejafu.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: tasty-dejafu-version: 2.0.0.6+version: 2.0.0.7 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-2.0.0.6+ tag: tasty-dejafu-2.0.0.7 library exposed-modules: Test.Tasty.DejaFu@@ -40,6 +40,6 @@ , dejafu >=2.0 && <2.5 , random >=1.0 && <1.3 , tagged >=0.8 && <0.9- , tasty >=0.10 && <1.4+ , tasty >=0.10 && <1.5 -- hs-source-dirs: default-language: Haskell2010