http-dispatch 0.5.0.1 → 0.5.0.2
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
http-dispatch.cabal view
@@ -1,5 +1,5 @@ name: http-dispatch-version: 0.5.0.1+version: 0.5.0.2 synopsis: High level HTTP client for Haskell description: Please see README.md homepage: http://github.com/owainlewis/http-dispatch#readme
src/Network/HTTP/Dispatch/Headers.hs view
@@ -26,5 +26,5 @@ -- | Helper to generate Basic authentication basicAuth :: S.ByteString -> S.ByteString -> Header basicAuth user pass = ("Authorization", auth)- where auth = "Basic: " <> userPassEncoded+ where auth = "Basic " <> userPassEncoded userPassEncoded = B64.encode $ user <> ":" <> pass