packages feed

http-streams 0.7.2.4 → 0.7.2.5

raw patch · 2 files changed

+2/−2 lines, 2 filesdep ~basePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base

API changes (from Hackage documentation)

Files

http-streams.cabal view
@@ -1,6 +1,6 @@ cabal-version:       >= 1.10 name:                http-streams-version:             0.7.2.4+version:             0.7.2.5 synopsis:            An HTTP client using io-streams description:  /Overview/
lib/Network/Http/Inconvenience.hs view
@@ -126,7 +126,7 @@     f c | c >= 'A' && c <= 'Z' = True         | c >= 'a' && c <= 'z' = True         | c >= '0' && c <= '9' = True-    f c = c `elem` "$-_.!~*'(),"+    f c = c `elem` ("$-_.!~*'(),"::String)   ------------------------------------------------------------------------------