packages feed

dep-t 0.1.2.0 → 0.1.3.0

raw patch · 3 files changed

+8/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for dep-t
 
+## 0.1.3.0
+
+* re-exported Control.Monad.Trans
+
 ## 0.1.2.0
 
 * re-exported Control.Monad.Reader.Class
dep-t.cabal view
@@ -1,7 +1,7 @@ cabal-version:       3.0
 
 name:                dep-t
-version:             0.1.2.0
+version:             0.1.3.0
 synopsis:            Reader-like monad transformer for dependency injection.
 description:         Put all your functions in the environment record! Let all
                      your functions read from the environment record! No favorites!
lib/Control/Monad/Dep.hs view
@@ -28,12 +28,14 @@     withDepT,
     zoomEnv,
     NilEnv(NilEnv),
-    -- * MonadReader re-exports
+    -- * Re-exports
+    module Control.Monad.Trans,
     module Control.Monad.Reader.Class
   )
 where
 
 import Control.Applicative
+import Control.Monad.Trans
 import Control.Monad.Cont.Class
 import Control.Monad.Error.Class
 import Control.Monad.IO.Unlift