diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,5 @@
+0.3.2.6 - 2015-4-26 - Rearrange imports to support Stackage LTS 2.4
+
 0.3.2.5 - 2015-4-22 - Add support for `PUT` and `DELETE`.
 
 0.3.2.4 - 2015-4-9 - Loosen lens bound and remove snap-extras dependency.
diff --git a/hspec-snap.cabal b/hspec-snap.cabal
--- a/hspec-snap.cabal
+++ b/hspec-snap.cabal
@@ -1,5 +1,5 @@
 name:                hspec-snap
-version:             0.3.2.5
+version:             0.3.2.6
 synopsis:            A library for testing with Hspec and the Snap Web Framework
 homepage:            https://github.com/dbp/hspec-snap
 license:             BSD3
@@ -28,7 +28,7 @@
                  , HandsomeSoup             >= 0.3      && < 0.4
                  , lens                     >= 3.10     && < 5
                  , mtl                      >= 2        && < 3
-                 , snap                     >= 0.13     && < 0.14
+                 , snap                     >= 0.13     && < 0.15
                  , snap-core                >= 0.9      && < 0.10
                  , text                     >= 0.11     && < 1.3
                  , transformers             >= 0.3      && < 0.5
@@ -49,9 +49,9 @@
                  , HandsomeSoup             >= 0.3      && < 0.4
                  , lens                     >= 3.10     && < 5
                  , mtl                      >= 2        && < 3
-                 , snap                     >= 0.13     && < 0.14
+                 , snap                     >= 0.13     && < 0.15
                  , snap-core                >= 0.9      && < 0.10
                  , text                     >= 0.11     && < 1.3
                  , transformers             >= 0.3      && < 0.5
                  , directory                >= 1.2      && < 1.3
-  build-depends:   hspec-snap               == 0.3.2.5
+  build-depends:   hspec-snap               == 0.3.2.6
diff --git a/spec/Main.hs b/spec/Main.hs
--- a/spec/Main.hs
+++ b/spec/Main.hs
@@ -18,7 +18,8 @@
                                                               tryPutMVar,
                                                               tryTakeMVar)
 import           Control.Lens                         hiding ((.=))
-import           Control.Monad                               (when)
+import           Control.Monad                               (void, when)
+import           Control.Monad.IO.Class                      (liftIO)
 import           Data.Aeson                                  (Value(..), (.=)
                                                              ,object, decode
                                                              ,ToJSON, FromJSON
@@ -37,11 +38,11 @@
                                                               Snaplet,
                                                               SnapletInit,
                                                               addRoutes,
-                                                              getParam, liftIO,
+                                                              getParam,
                                                               makeSnaplet,
                                                               method,
                                                               nestSnaplet,
-                                                              route, void, with,
+                                                              route, with,
                                                               writeBS,
                                                               writeText)
 import qualified Snap
