diff --git a/Text/Chatty/Templates.hs b/Text/Chatty/Templates.hs
--- a/Text/Chatty/Templates.hs
+++ b/Text/Chatty/Templates.hs
@@ -30,8 +30,8 @@
 strToType s = do
   TyConI d <- reify s
   case d of
-    DataD _ n _ _ _ -> conT $ simpleName n
-    NewtypeD _ n _ _ _ -> conT $ simpleName n
+    DataD _ n _ _ _ _ -> conT $ simpleName n
+    NewtypeD _ n _ _ _ _ -> conT $ simpleName n
     TySynD n _ _ -> conT $ simpleName n
   where
     simpleName :: Name -> Name
diff --git a/chatty.cabal b/chatty.cabal
--- a/chatty.cabal
+++ b/chatty.cabal
@@ -10,14 +10,15 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             0.7.0.0
+version:             0.7.0.1
 
 -- A short (one-line) description of the package.
 synopsis:            Some monad transformers and typeclasses for abstraction of global dependencies.
 
 -- A longer description of the package.
 description:         Some monad transformers and typeclasses abstracting global dependencies, like Text in- and output (incl. here-strings, pipes, recorders and file-redirections on a per-function scope),
-                     process spawning, time and random number retrieval. Later also: Filesystem access, database access, authentication and privilege escalation (passing-through IO actions).
+                     process spawning, time and random number retrieval. 
+		     Note that the author does not recommend using this package for new projects. Please use packages better suited for individual purpose.
 
 -- The license under which the package is released.
 license:             AGPL-3
@@ -30,9 +31,9 @@
 
 -- An email address to which users can send suggestions, bug reports, and 
 -- patches.
-maintainer:          marvin.cohrs@gmx.net
+maintainer:          chatty@mcohrs.eu
 
-homepage:            http://doomanddarkness.eu/pub/chatty
+homepage:            http://hub.darcs.net/enum/chatty
 
 -- A copyright notice.
 -- copyright:           
@@ -60,7 +61,7 @@
   other-extensions:    ExistentialQuantification, RankNTypes, Rank2Types, FlexibleInstances, MultiParamTypeClasses, FunctionalDependencies, TemplateHaskell, QuasiQuotes, UndecidableInstances
   
   -- Other library packages from which modules are imported.
-  build-depends:       base >=4.7 && <4.9,
+  build-depends:       base >=4.9 && <5.0,
                        transformers,
                        directory,
                        process,
