diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/dep-t.cabal b/dep-t.cabal
--- a/dep-t.cabal
+++ b/dep-t.cabal
@@ -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!
diff --git a/lib/Control/Monad/Dep.hs b/lib/Control/Monad/Dep.hs
--- a/lib/Control/Monad/Dep.hs
+++ b/lib/Control/Monad/Dep.hs
@@ -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
