diff --git a/Aws/Route53/Commands/ListResourceRecordSets.hs b/Aws/Route53/Commands/ListResourceRecordSets.hs
--- a/Aws/Route53/Commands/ListResourceRecordSets.hs
+++ b/Aws/Route53/Commands/ListResourceRecordSets.hs
@@ -1,3 +1,4 @@
+{-# LANGUAGE CPP #-}
 {-# LANGUAGE TupleSections #-}
 -- ------------------------------------------------------ --
 -- Copyright © 2012 AlephCloud Systems, Inc.
@@ -19,7 +20,9 @@
 import           Aws.Core
 import           Aws.Route53.Core
 import           Data.Maybe                 (catMaybes, listToMaybe)
+#if __GLASGOW_HASKELL__ < 710
 import           Control.Applicative        ((<$>))
+#endif
 import           Control.Monad              (guard)
 import           Text.XML.Cursor            (($//), (&|), ($/))
 import qualified Data.Text                  as T
diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+# 0.1.2.1 - 30th October, 2015
+
+* Fix warning with GHC 7.10.
+
 # 0.1.2 - 27th April, 2015
 
 * Fix compilation with GHC 7.10.
diff --git a/aws-route53.cabal b/aws-route53.cabal
--- a/aws-route53.cabal
+++ b/aws-route53.cabal
@@ -1,5 +1,5 @@
 name:                aws-route53
-version:             0.1.2
+version:             0.1.2.1
 synopsis:            Amazon Route53 DNS service plugin for the aws package.
 description:         Amazon Route53 DNS service plugin for the aws package.
 license:             BSD3
@@ -55,7 +55,7 @@
 Source-repository this
   type: git
   location: https://github.com/memcachier/aws-route53.git
-  tag: 0.1.2
+  tag: 0.1.2.1
 
 Source-repository head
   type: git
