diff --git a/Data/Chatty/Atoms.hs b/Data/Chatty/Atoms.hs
--- a/Data/Chatty/Atoms.hs
+++ b/Data/Chatty/Atoms.hs
@@ -20,7 +20,7 @@
   along with Chatty. If not, see <http://www.gnu.org/licenses/>.
 -}
 
--- | Provides a variable-storing monad and functions for access
+-- | Provides a variable-storing monad and functions for access. Not recommended. Use IORef, STRef or the like. Really.
 module Data.Chatty.Atoms where
 
 import Control.Applicative
diff --git a/Data/Chatty/Fail.hs b/Data/Chatty/Fail.hs
--- a/Data/Chatty/Fail.hs
+++ b/Data/Chatty/Fail.hs
@@ -21,7 +21,7 @@
   along with Chatty. If not, see <http://www.gnu.org/licenses/>.
 -}
 
--- | Provides a monad for error handling. Okay, I confess it's equal to ErrorT...
+-- | Provides a monad for error handling. Okay, I confess it's equal to ErrorT... You should use that one.
 module Data.Chatty.Fail where
 
 import Control.Applicative
diff --git a/chatty-utils.cabal b/chatty-utils.cabal
--- a/chatty-utils.cabal
+++ b/chatty-utils.cabal
@@ -10,7 +10,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             0.7.3.2
+version:             0.7.3.3
 
 -- A short (one-line) description of the package.
 synopsis:            Some utilities every serious chatty-based application may need.
@@ -60,7 +60,10 @@
   -- other-extensions:    
   
   -- Other library packages from which modules are imported.
-  build-depends:       base >=4.6 && <4.9, transformers >=0.3 && <0.5, text >=1.1 && <1.4, mtl >=2.1 && <2.3
+  build-depends:       base >=4.6 && <4.9,
+                       transformers,
+                       text,
+                       mtl
   
   -- Directories containing source files.
   -- hs-source-dirs:      
