http-client 0.4.6.1 → 0.4.6.2
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- http-client.cabal +2/−2
- test/Network/HTTP/ClientSpec.hs +1/−1
http-client.cabal view
@@ -1,5 +1,5 @@ name: http-client-version: 0.4.6.1+version: 0.4.6.2 synopsis: An HTTP client engine, intended as a base layer for more user-friendly packages. description: Hackage documentation generation is not reliable. For up to date documentation, please see: <http://www.stackage.org/package/http-client>. homepage: https://github.com/snoyberg/http-client@@ -41,7 +41,7 @@ , streaming-commons >= 0.1.0.2 && < 0.2 , containers , transformers- , deepseq >= 1.3 && <1.4+ , deepseq >= 1.3 && <1.5 , case-insensitive >= 1.0 , base64-bytestring >= 1.0 && <1.1 , publicsuffixlist
test/Network/HTTP/ClientSpec.hs view
@@ -13,7 +13,7 @@ spec :: Spec spec = describe "Client" $ do it "works" $ withSocketsDo $ do- req <- parseUrl "http://www.yesodweb.com/"+ req <- parseUrl "http://httpbin.org/" man <- newManager defaultManagerSettings res <- httpLbs req man responseStatus res `shouldBe` status200