diff --git a/Control/Monad/Logger.hs b/Control/Monad/Logger.hs
--- a/Control/Monad/Logger.hs
+++ b/Control/Monad/Logger.hs
@@ -7,12 +7,11 @@
 -- |  This module provides the facilities needed for a decoupled logging system.
 --
 -- The 'MonadLogger' class is implemented by monads that give access to a
--- logging facility.  Note that although 'IO', 'Identity' and 'ST' are
--- instances of 'MonadLogger', they will /discard all log messages/.  If you're
--- defining a custom monad, then you may define an instance of 'MonadLogger'
--- that routes the log messages to the appropriate place (e.g., that's what
--- @yesod-core@'s @GHandler@ does).  Otherwise, you may use the 'LoggingT'
--- monad included in this module (see 'runStderrLoggingT').
+-- logging facility.  If you're defining a custom monad, then you may define an
+-- instance of 'MonadLogger' that routes the log messages to the appropriate
+-- place (e.g., that's what @yesod-core@'s @GHandler@ does).  Otherwise, you
+-- may use the 'LoggingT' monad included in this module (see
+-- 'runStderrLoggingT'). To simply discard log message, use 'NoLoggingT'.
 --
 -- As a user of the logging facility, we provide you some convenient Template
 -- Haskell splices that use the 'MonadLogger' class.  They will record their
diff --git a/monad-logger.cabal b/monad-logger.cabal
--- a/monad-logger.cabal
+++ b/monad-logger.cabal
@@ -1,5 +1,5 @@
 name:                monad-logger
-version:             0.3.0
+version:             0.3.0.1
 synopsis:            A class of monads which can log messages.
 description:         This package uses template-haskell for determining source code locations of messages.
 homepage:            https://github.com/kazu-yamamoto/logger
