packages feed

http-client 0.4.18 → 0.4.18.1

raw patch · 3 files changed

+2/−8 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Network/HTTP/Client.hs view
@@ -22,12 +22,6 @@ -- 'newManager' 'defaultManagerSettings' -- @ ----- or using the 'bracket' pattern with------ @--- 'withManager' 'defaultManagerSettings'--- @--- -- While generally speaking it is a good idea to share a single @Manager@ -- throughout your application, there are cases where it makes more sense to -- create and destroy @Manager@s more frequently. As an example, if you have an
README.md view
@@ -23,7 +23,7 @@     let settings = managerSetProxy             (proxyEnvironment Nothing)             defaultManagerSettings-    withManager settings $ \man -> do+    man <- newManager settings     let req = "http://httpbin.org"             -- Note that the following settings will be completely ignored.             { proxy = Just $ Proxy "localhost" 1234
http-client.cabal view
@@ -1,5 +1,5 @@ name:                http-client-version:             0.4.18+version:             0.4.18.1 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