diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,8 @@
+0.5.5.0
+=======
+* Export `runNoLoggingT` and `NoLoggingT` constructor.
+* Delegate MonadReader instance for `NoLoggingT`.
+
 0.5.4.0
 =======
 * Loosen bounds on resourcet and template-haskell.
diff --git a/katip.cabal b/katip.cabal
--- a/katip.cabal
+++ b/katip.cabal
@@ -1,5 +1,5 @@
 name:                katip
-version:             0.5.4.0
+version:             0.5.5.0
 synopsis:            A structured logging framework.
 description:
   Katip is a structured logging framework. See README.md for more details.
@@ -54,7 +54,7 @@
     OverloadedStrings
 
   build-depends: base >=4.5 && <5
-               , aeson >=0.6 && <1.3
+               , aeson >=0.6 && <1.4
                , async < 3.0.0.0
                , auto-update >= 0.1 && < 0.2
                , bytestring >= 0.9 && < 0.11
diff --git a/src/Katip/Monadic.hs b/src/Katip/Monadic.hs
--- a/src/Katip/Monadic.hs
+++ b/src/Katip/Monadic.hs
@@ -34,7 +34,7 @@
     , katipAddNamespace
     , katipAddContext
     , KatipContextTState(..)
-    , NoLoggingT
+    , NoLoggingT (..)
     , askLoggerIO
     ) where
 
@@ -454,6 +454,7 @@
                , MonadPlus
                , Alternative
                , MonadFix
+               , MonadReader r
                )
 
 instance MonadTrans NoLoggingT where
