http-date 0.0.5 → 0.0.6
raw patch · 2 files changed
+4/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Network/HTTP/Date/Parser.hs +3/−1
- http-date.cabal +1/−1
Network/HTTP/Date/Parser.hs view
@@ -31,7 +31,9 @@ sp (h,n,s) <- time sp- void $ string "GMT"+ -- RFC 2616 defines GMT only but there are actually ill-formed ones such + -- as "+0000" and "UTC" in the wild.+ void $ string "GMT" <|> string "+0000" <|> string "UTC" return $ defaultHTTPDate { hdYear = y , hdMonth = m
http-date.cabal view
@@ -1,5 +1,5 @@ Name: http-date-Version: 0.0.5+Version: 0.0.6 Author: Kazu Yamamoto <kazu@iij.ad.jp> Maintainer: Kazu Yamamoto <kazu@iij.ad.jp> License: BSD3