packages feed

hunit-dejafu 2.0.0.4 → 2.0.0.5

raw patch · 3 files changed

+16/−4 lines, 3 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Test.HUnit.DejaFu: expectFailure :: () => RefinementProperty o x -> RefinementProperty o x
+ Test.HUnit.DejaFu: expectFailure :: RefinementProperty o x -> RefinementProperty o x
- Test.HUnit.DejaFu: inspectIORef :: () => ModelIORef n a -> Invariant n a
+ Test.HUnit.DejaFu: inspectIORef :: forall (n :: Type -> Type) a. ModelIORef n a -> Invariant n a
- Test.HUnit.DejaFu: inspectMVar :: () => ModelMVar n a -> Invariant n (Maybe a)
+ Test.HUnit.DejaFu: inspectMVar :: forall (n :: Type -> Type) a. ModelMVar n a -> Invariant n (Maybe a)
- Test.HUnit.DejaFu: inspectTVar :: () => ModelTVar n a -> Invariant n a
+ Test.HUnit.DejaFu: inspectTVar :: forall (n :: Type -> Type) a. ModelTVar n a -> Invariant n a
- Test.HUnit.DejaFu: registerInvariant :: () => Invariant n a -> Program Basic n ()
+ Test.HUnit.DejaFu: registerInvariant :: forall (n :: Type -> Type) a. Invariant n a -> Program Basic n ()
- Test.HUnit.DejaFu: type family X a :: Type;
+ Test.HUnit.DejaFu: type family X a;
- Test.HUnit.DejaFu: withSetup :: () => Program Basic n x -> (x -> Program Basic n a) -> Program (WithSetup x) n a
+ Test.HUnit.DejaFu: withSetup :: forall (n :: Type -> Type) x a. Program Basic n x -> (x -> Program Basic n a) -> Program (WithSetup x) n a
- Test.HUnit.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.HUnit.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.HUnit.DejaFu: withTeardown :: () => (x -> Either Condition y -> Program Basic n a) -> Program (WithSetup x) n y -> Program (WithSetupAndTeardown x y) n a
+ Test.HUnit.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 view
@@ -7,6 +7,18 @@ .. _PVP: https://pvp.haskell.org/  +2.0.0.5 (2021-08-15)+--------------------++* Git: :tag:`hunit-dejafu-2.0.0.5`+* Hackage: :hackage:`hunit-dejafu-2.0.0.5`++Miscellaneous+~~~~~~~~~~~~~++* Remove reference to freenode in README.++ 2.0.0.4 (2020-07-01) -------------------- 
README.markdown view
@@ -10,8 +10,8 @@  Bug reports, pull requests, and comments are very welcome! -Feel free to contact me on GitHub, through IRC (#haskell on freenode),-or email (mike@barrucadu.co.uk).+Feel free to contact me on GitHub, through IRC (#haskell on+libera.chat), or email (mike@barrucadu.co.uk).  [dejafu]: https://hackage.haskell.org/package/dejafu [HUnit]:  https://hackage.haskell.org/package/HUnit
hunit-dejafu.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                hunit-dejafu-version:             2.0.0.4+version:             2.0.0.5 synopsis:            Deja Fu support for the HUnit test framework.  description:@@ -30,7 +30,7 @@ source-repository this   type:     git   location: https://github.com/barrucadu/dejafu.git-  tag:      hunit-dejafu-2.0.0.4+  tag:      hunit-dejafu-2.0.0.5  library   exposed-modules:     Test.HUnit.DejaFu