diff --git a/hissmetrics.cabal b/hissmetrics.cabal
--- a/hissmetrics.cabal
+++ b/hissmetrics.cabal
@@ -1,5 +1,5 @@
 Name:                hissmetrics
-Version:             0.4.0.2
+Version:             0.5
 Synopsis:            Unofficial API bindings to KISSmetrics.
 Homepage:            https://github.com/meteficha/hissmetrics
 License:             BSD3
@@ -28,9 +28,9 @@
                  , time         >= 1.1     && < 2
                  , bytestring
                  , text         >= 0.7     && < 0.12
-                 , conduit      == 0.5.*
+                 , conduit      == 1.0.*
                  , http-types
-                 , http-conduit >= 1.5
+                 , http-conduit >= 1.9
   Extensions:
     DeriveDataTypeable,
     RecordWildCards,
diff --git a/src/Web/KISSmetrics.hs b/src/Web/KISSmetrics.hs
--- a/src/Web/KISSmetrics.hs
+++ b/src/Web/KISSmetrics.hs
@@ -178,12 +178,12 @@
                 }
 
     -- Make the call
-    H.Response {..} <- H.http request manager
+    r <- H.http request manager
 
     -- KISSmetrics always returns 200 Ok with an invisible 1x1
     -- GIF.  We need to consume the body in order to let the
     -- connection be reused via keep-alive.
-    responseBody C.$$+- CL.sinkNull
+    H.responseBody r C.$$+- CL.sinkNull
 
 
 -- | Internal function.  Given a 'CallType', return the URL to be
