ghc-mtl 1.0.0.0 → 1.0.1.0
raw patch · 1 files changed
+2/−2 lines, 1 filesdep ~MonadCatchIO-mtlPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: MonadCatchIO-mtl
API changes (from Hackage documentation)
- Control.Monad.Ghc: instance (Functor m) => Functor (GhcT m)
- Control.Monad.Ghc: instance (Functor m) => Functor (MTLAdapter m)
- Control.Monad.Ghc: instance (Monad m) => Monad (GhcT m)
- Control.Monad.Ghc: instance (Monad m) => Monad (MTLAdapter m)
- Control.Monad.Ghc: instance (MonadCatchIO m) => ExceptionMonad (GhcT m)
- Control.Monad.Ghc: instance (MonadCatchIO m) => ExceptionMonad (MTLAdapter m)
- Control.Monad.Ghc: instance (MonadCatchIO m) => MonadCatchIO (GhcT m)
- Control.Monad.Ghc: instance (MonadIO m) => MonadIO (GhcT m)
- Control.Monad.Ghc: instance (MonadIO m) => MonadIO (MTLAdapter m)
- Control.Monad.Ghc: instance (MonadIO m) => WarnLogMonad (GhcT m)
+ Control.Monad.Ghc: instance Functor m => Functor (GhcT m)
+ Control.Monad.Ghc: instance Functor m => Functor (MTLAdapter m)
+ Control.Monad.Ghc: instance Monad m => Monad (GhcT m)
+ Control.Monad.Ghc: instance Monad m => Monad (MTLAdapter m)
+ Control.Monad.Ghc: instance MonadCatchIO m => ExceptionMonad (GhcT m)
+ Control.Monad.Ghc: instance MonadCatchIO m => ExceptionMonad (MTLAdapter m)
+ Control.Monad.Ghc: instance MonadCatchIO m => MonadCatchIO (GhcT m)
+ Control.Monad.Ghc: instance MonadIO m => MonadIO (GhcT m)
+ Control.Monad.Ghc: instance MonadIO m => MonadIO (MTLAdapter m)
+ Control.Monad.Ghc: instance MonadIO m => WarnLogMonad (GhcT m)
- Control.Monad.Ghc: getSession :: (GhcMonad m) => m HscEnv
+ Control.Monad.Ghc: getSession :: GhcMonad m => m HscEnv
- Control.Monad.Ghc: setSession :: (GhcMonad m) => HscEnv -> m ()
+ Control.Monad.Ghc: setSession :: GhcMonad m => HscEnv -> m ()
Files
- ghc-mtl.cabal +2/−2
ghc-mtl.cabal view
@@ -1,5 +1,5 @@ name: ghc-mtl-version: 1.0.0.0+version: 1.0.1.0 description: Provides an 'mtl' compatible version of the 'GhcT' monad-transformer defined in the 'GHC-API' since version 6.10.1.@@ -20,7 +20,7 @@ build-depends: base >= 4, ghc >= 6.10, mtl,- MonadCatchIO-mtl+ MonadCatchIO-mtl >= 0.2.0.0 exposed-modules: Control.Monad.Ghc extensions: GeneralizedNewtypeDeriving ghc-options: -Wall -O2