diff --git a/Aws/Core.hs b/Aws/Core.hs
--- a/Aws/Core.hs
+++ b/Aws/Core.hs
@@ -1,3 +1,4 @@
+{-# LANGUAGE CPP #-}
 module Aws.Core
 ( -- * Logging
   Loggable(..)
@@ -369,7 +370,11 @@
                                             Nothing -> HTTP.RequestBodyBuilder 0 mempty
                                             Just x  -> x
       , HTTP.decompress = HTTP.alwaysDecompress
+#if MIN_VERSION_http_conduit(1, 9, 0)
+      , HTTP.checkStatus = \_ _ _ -> Nothing
+#else
       , HTTP.checkStatus = \_ _ -> Nothing
+#endif
       }
     where contentType = case sqMethod of
                            PostQuery -> Just "application/x-www-form-urlencoded; charset=utf-8"
@@ -617,8 +622,8 @@
     => (Cu.Cursor -> Response m a)
     -> IORef m
     -> HTTPResponseConsumer a
-xmlCursorConsumer parse metadataRef (HTTP.Response { HTTP.responseBody = source })
-    = do doc <- source $$+- XML.sinkDoc XML.def
+xmlCursorConsumer parse metadataRef res
+    = do doc <- HTTP.responseBody res $$+- XML.sinkDoc XML.def
          let cursor = Cu.fromDocument doc
          let Response metadata x = parse cursor
          liftIO $ tellMetadataRef metadataRef metadata
diff --git a/README.org b/README.org
--- a/README.org
+++ b/README.org
@@ -93,6 +93,9 @@
 
 ** 0.7 series
 
+- 0.7.6.2
+  - Support for http-conduit 1.9
+
 - 0.7.6.1
   - Support for case-insensitive 1.0 and http-types 0.8
 
diff --git a/aws.cabal b/aws.cabal
--- a/aws.cabal
+++ b/aws.cabal
@@ -1,5 +1,5 @@
 Name:                aws
-Version:             0.7.6.1
+Version:             0.7.6.2
 Synopsis:            Amazon Web Services (AWS) for Haskell
 Description:         Bindings for Amazon Web Services (AWS), with the aim of supporting all AWS services. To see a high level overview of the library, see the README at <https://github.com/aristidb/aws/blob/master/README.org>.
 Homepage:            http://github.com/aristidb/aws
@@ -20,7 +20,7 @@
 Source-repository this
   type: git
   location: https://github.com/aristidb/aws.git
-  tag: 0.7.6.1
+  tag: 0.7.6.2
 
 Source-repository head
   type: git
@@ -78,7 +78,7 @@
                        directory            >= 1.0     && < 1.3,
                        failure              >= 0.2.0.1 && < 0.3,
                        filepath             >= 1.1     && < 1.4,
-                       http-conduit         >= 1.6     && < 1.9,
+                       http-conduit         >= 1.6     && < 1.10,
                        http-types           >= 0.7     && < 0.9,
                        lifted-base          >= 0.1     && < 0.3,
                        monad-control        >= 0.3,
