dunai 0.12.1 → 0.12.2
raw patch · 2 files changed
+7/−3 lines, 2 filesdep ~transformersPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: transformers
API changes (from Hackage documentation)
- Control.Monad.Trans.MSF.Except: newtype ExceptT e (m :: Type -> Type) a
+ Control.Monad.Trans.MSF.Except: newtype () => ExceptT e (m :: Type -> Type) a
- Control.Monad.Trans.MSF.List: newtype ListT (m :: Type -> Type) a
+ Control.Monad.Trans.MSF.List: newtype () => ListT (m :: Type -> Type) a
- Control.Monad.Trans.MSF.Maybe: newtype MaybeT (m :: Type -> Type) a
+ Control.Monad.Trans.MSF.Maybe: newtype () => MaybeT (m :: Type -> Type) a
- Control.Monad.Trans.MSF.RWS: newtype RWST r w s (m :: Type -> Type) a
+ Control.Monad.Trans.MSF.RWS: newtype () => RWST r w s (m :: Type -> Type) a
- Control.Monad.Trans.MSF.Reader: newtype ReaderT r (m :: Type -> Type) a
+ Control.Monad.Trans.MSF.Reader: newtype () => ReaderT r (m :: Type -> Type) a
- Control.Monad.Trans.MSF.State: newtype StateT s (m :: Type -> Type) a
+ Control.Monad.Trans.MSF.State: newtype () => StateT s (m :: Type -> Type) a
- Control.Monad.Trans.MSF.Writer: newtype WriterT w (m :: Type -> Type) a
+ Control.Monad.Trans.MSF.Writer: newtype () => WriterT w (m :: Type -> Type) a
Files
- CHANGELOG +4/−0
- dunai.cabal +3/−3
CHANGELOG view
@@ -1,3 +1,7 @@+2024-02-21 Ivan Perez <ivan.perez@keera.co.uk>+ * Version bump (0.12.2) (#398).+ * Limit version of transformers to < 0.6 (#405).+ 2023-12-21 Ivan Perez <ivan.perez@keera.co.uk> * Version bump (0.12.1) (#395). * Remove postgresql repo before installation in CI script (#392).
dunai.cabal view
@@ -30,7 +30,7 @@ build-type: Simple name: dunai-version: 0.12.1+version: 0.12.2 author: Ivan Perez, Manuel Bärenz maintainer: ivan.perez@keera.co.uk homepage: https://github.com/ivanperez-keera/dunai@@ -129,7 +129,7 @@ base >= 4.6 && < 5 , MonadRandom >= 0.2 && < 0.7 , simple-affine-space >= 0.2 && < 0.3- , transformers >= 0.3 && < 0.7+ , transformers >= 0.3 && < 0.6 , transformers-base >= 0.4 && < 0.5 default-language:@@ -215,7 +215,7 @@ build-depends: base >= 4 && < 5- , transformers >= 0.3 && < 0.7+ , transformers >= 0.3 && < 0.6 , tasty >= 0.1 && < 1.5 , tasty-hunit >= 0.8 && < 0.11