diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## Req Conduit 0.2.1
+
+* Fixed weigh benchmark.
+
+* Started testing with GHC 8.2.1.
+
 ## Req Conduit 0.2.0
 
 * This version is to be used with Req 0.3.0.
diff --git a/req-conduit.cabal b/req-conduit.cabal
--- a/req-conduit.cabal
+++ b/req-conduit.cabal
@@ -1,7 +1,7 @@
 name:                 req-conduit
-version:              0.2.0
-cabal-version:        >= 1.10
-tested-with:          GHC==7.8.4, GHC==7.10.3, GHC==8.0.2
+version:              0.2.1
+cabal-version:        >= 1.18
+tested-with:          GHC==7.8.4, GHC==7.10.3, GHC==8.0.2, GHC==8.2.1
 license:              BSD3
 license-file:         LICENSE.md
 author:               Mark Karpov <markkarpov92@gmail.com>, Michael Snoyman <michael@snoyman.com>
diff --git a/weigh-bench/Main.hs b/weigh-bench/Main.hs
--- a/weigh-bench/Main.hs
+++ b/weigh-bench/Main.hs
@@ -43,7 +43,7 @@
 bigResponse size = withSystemTempFile "req-conduit" $ \_ h ->
   runConduitRes $
     req' GET (httpbin /: "stream-bytes" /~ size) NoReqBody
-      httpSource mempty =$= CB.sinkHandle h
+      mempty httpSource =$= CB.sinkHandle h
 
 ----------------------------------------------------------------------------
 -- Instances
