packages feed

HTTP 4000.3.7 → 4000.3.8

raw patch · 2 files changed

+2/−1 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

HTTP.cabal view
@@ -1,5 +1,5 @@ Name: HTTP-Version: 4000.3.7+Version: 4000.3.8 Cabal-Version: >= 1.8 Build-type: Simple License: BSD3
Network/HTTP/Proxy.hs view
@@ -160,6 +160,7 @@ -- | @parseProxy str@ translates a proxy server string into a @Proxy@ value; -- returns @Nothing@ if not well-formed. parseProxy :: String -> Maybe Proxy+parseProxy "" = Nothing parseProxy str = join                    . fmap uri2proxy                    $ parseHttpURI str