pipes-attoparsec 0.3.0 → 0.3.1
raw patch · 4 files changed
+13/−5 lines, 4 filesdep ~attoparsec
Dependency ranges changed: attoparsec
Files
- NEWS +5/−0
- PEOPLE +4/−2
- pipes-attoparsec.cabal +3/−3
- src/Pipes/Attoparsec/Internal.hs +1/−0
NEWS view
@@ -1,3 +1,8 @@+# Version 0.3.1++* Support attoparsec-0.11.++ # Version 0.3.0 * Upgrade to pipes-4.0.0 and pipes-parse-2.0.0, removing proxy
PEOPLE view
@@ -1,6 +1,8 @@ The following people have participated in creating this library, either-by directly contributing code or by providing thoughtful input in-discussions about the library design.+by directly contributing code, or by providing resources or thoughtful+input in discussions about the library design, or somehow else. In+order of appareance. Renzo Carbonara Gabriel Gonzalez+Patrick Wheeler
pipes-attoparsec.cabal view
@@ -1,5 +1,5 @@ name: pipes-attoparsec-version: 0.3.0+version: 0.3.1 license: BSD3 license-file: LICENSE copyright: Copyright (c) Renzo Carbonara 2012-2013, Paolo Capriotti 2012@@ -27,10 +27,10 @@ library hs-source-dirs: src exposed-modules: Pipes.Attoparsec- other-modules: Pipes.Attoparsec.Internal+ , Pipes.Attoparsec.Internal build-depends: base (==4.*)- , attoparsec (>=0.10 && <0.11)+ , attoparsec (>=0.10 && <0.12) , bytestring (>=0.9.2.1) , pipes (>=4.0 && <4.1) , pipes-parse (>=2.0 && <2.1)
src/Pipes/Attoparsec/Internal.hs view
@@ -13,6 +13,7 @@ , ParserInput -- * Parsing , parseWithDraw+ , parseWithRaw ) where --------------------------------------------------------------------------------