req-conduit 0.2.0 → 0.2.1
raw patch · 3 files changed
+10/−4 lines, 3 filesdep ~conduit-extradep ~req
Dependency ranges changed: conduit-extra, req
Files
- CHANGELOG.md +6/−0
- req-conduit.cabal +3/−3
- weigh-bench/Main.hs +1/−1
CHANGELOG.md view
@@ -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.
req-conduit.cabal view
@@ -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>
weigh-bench/Main.hs view
@@ -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