cgi 3001.1.7.0 → 3001.1.7.1
raw patch · 2 files changed
+6/−6 lines, 2 filesdep ~basedep ~networkPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, network
API changes (from Hackage documentation)
Files
- Network/CGI/Header.hs +3/−3
- cgi.cabal +3/−3
Network/CGI/Header.hs view
@@ -293,9 +293,9 @@ headerNameChar :: Parser Char headerNameChar = noneOf "\n\r:" -especials, tokenchar :: [Char]-especials = "()<>@,;:\\\"/[]?.="-tokenchar = "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~" \\ especials+tspecials, tokenchar :: [Char]+tspecials = "()<>@,;:\\\"/[]?="+tokenchar = "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~" \\ tspecials p_token :: Parser String p_token = many1 (oneOf tokenchar)
cgi.cabal view
@@ -1,5 +1,5 @@ Name: cgi-Version: 3001.1.7.0+Version: 3001.1.7.1 Copyright: Bjorn Bringert, Andy Gill, Ian Lynagh, Erik Meijer, Sven Panne, Jeremy Shaw Maintainer: bjorn@bringert.net@@ -31,13 +31,13 @@ Build-depends: network>=2.0, parsec >= 2.0, mtl >= 1.0, xhtml >= 3000.0.0 If flag(split-base)- Build-depends: base >= 3, old-time, old-locale, containers+ Build-depends: base == 3.*, old-time, old-locale, containers Else Build-depends: base < 3 If flag(bytestring-in-base) Build-depends: base >= 2 && < 3 Else- Build-depends: base < 2 || >= 3, bytestring+ Build-depends: base < 2 || == 3.*, bytestring --Executable: printinput --Main-Is: printinput.hs