http-enumerator 0.2.0.1 → 0.2.0.2
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
Network/HTTP/Enumerator/HttpParser.hs view
@@ -5,7 +5,7 @@ , iterNewline ) where -import Prelude hiding (take)+import Prelude hiding (take, takeWhile) import Data.Attoparsec import Data.Attoparsec.Enumerator import Data.Enumerator (Iteratee)@@ -21,7 +21,7 @@ k <- takeWhile1 notNewlineColon _ <- word8 58 -- colon skipWhile isSpace- v <- takeWhile1 notNewline+ v <- takeWhile notNewline newline return (k, v)
http-enumerator.cabal view
@@ -1,5 +1,5 @@ name: http-enumerator-version: 0.2.0.1+version: 0.2.0.2 license: BSD3 license-file: LICENSE author: Michael Snoyman <michael@snoyman.com>