diff --git a/fclabels.cabal b/fclabels.cabal
--- a/fclabels.cabal
+++ b/fclabels.cabal
@@ -1,5 +1,5 @@
 Name:            fclabels
-Version:         0.11.1.1
+Version:         0.11.2
 Author:          Sebastiaan Visser, Erik Hesselink, Chris Eidhof, Sjoerd Visscher.
 Synopsis:        First class accessor labels implemented as lenses.
 
@@ -116,8 +116,10 @@
                  .
                  .
                  > CHANGELOG
-                 >   0.11.1 -> 0.11.1.1
-                 >   - Improved TH support for multiple constructor datatypes.
+                 >   0.11.1.1 -> 0.11.2
+                 >   - Relaxed template haskell dependency constraint
+                 >     for GHC 7.2
+                 >   - Removed redundant import warnings.
 
 Maintainer:      Sebastiaan Visser <haskell@fvisser.nl>
 License:         BSD3
@@ -133,7 +135,10 @@
                    Data.Record.Label.Monadic
   Other-Modules:   Data.Record.Label.TH
   Build-Depends:   base >= 3 && < 5
-                 , template-haskell >= 2.2 && < 2.6
+                 , template-haskell >= 2.2 && < 2.7
                  , mtl >= 1.1 && <= 2.1
   GHC-Options:     -Wall
 
+Source-Repository head
+  Type:            git
+  Location:        git://github.com/sebastiaanvisser/fclabels.git
diff --git a/src/Data/Record/Label/Core.hs b/src/Data/Record/Label/Core.hs
--- a/src/Data/Record/Label/Core.hs
+++ b/src/Data/Record/Label/Core.hs
@@ -4,8 +4,6 @@
 import Prelude hiding ((.), id)
 import Control.Applicative
 import Control.Category
-import Control.Monad.State
-import Control.Monad.Reader
 
 data Point f i o = Point
   { _get :: f -> o
