diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,5 @@
+0.3.2.7 - 2015-4-26 - Update dependencies (and a LANGUAGE flag) for GHC 7.10.
+
 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`.
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.6
+version:             0.3.2.7
 synopsis:            A library for testing with Hspec and the Snap Web Framework
 homepage:            https://github.com/dbp/hspec-snap
 license:             BSD3
@@ -18,14 +18,14 @@
   exposed-modules:
         Test.Hspec.Snap
   hs-source-dirs:  src
-  build-depends:   base                     >= 4.6      && < 4.8
+  build-depends:   base                     >= 4.6      && < 4.9
                  , bytestring               >= 0.9      && < 0.11
                  , containers               >= 0.4      && < 0.6
-                 , digestive-functors       >= 0.7      && < 0.8
+                 , digestive-functors       >= 0.7      && < 0.9
                  , hspec                    >= 2.0      && < 2.2
                  , hspec-core               >= 2.0      && < 2.2
                  , hxt                      >= 9.3      && < 9.4
-                 , HandsomeSoup             >= 0.3      && < 0.4
+                 , HandsomeSoup             >= 0.3      && < 0.5
                  , lens                     >= 3.10     && < 5
                  , mtl                      >= 2        && < 3
                  , snap                     >= 0.13     && < 0.15
@@ -38,15 +38,15 @@
   type:            exitcode-stdio-1.0
   hs-source-dirs:  spec
   main-is:         Main.hs
-  build-depends:   base                     >= 4.6      && < 4.8
-                 , aeson                    >= 0.6      && < 1
+  build-depends:   base                     >= 4.6      && < 4.9
+                 , aeson                    >= 0.6      && < 0.8.1
                  , bytestring               >= 0.9      && < 0.11
                  , containers               >= 0.4      && < 0.6
-                 , digestive-functors       >= 0.7      && < 0.8
+                 , digestive-functors       >= 0.7      && < 0.9
                  , hspec                    >= 2.0      && < 2.2
                  , hspec-core               >= 2.0      && < 2.2
                  , hxt                      >= 9.3      && < 9.4
-                 , HandsomeSoup             >= 0.3      && < 0.4
+                 , HandsomeSoup             >= 0.3      && < 0.5
                  , lens                     >= 3.10     && < 5
                  , mtl                      >= 2        && < 3
                  , snap                     >= 0.13     && < 0.15
diff --git a/spec/Main.hs b/spec/Main.hs
--- a/spec/Main.hs
+++ b/spec/Main.hs
@@ -1,3 +1,4 @@
+{-# LANGUAGE FlexibleContexts          #-}
 {-# LANGUAGE GADTs                     #-}
 {-# LANGUAGE MultiParamTypeClasses     #-}
 {-# LANGUAGE NoMonomorphismRestriction #-}
