packages feed

fastparser 0.3.1.1 → 0.3.1.2

raw patch · 2 files changed

+7/−3 lines, 2 filesdep ~containersPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: containers

API changes (from Hackage documentation)

- ByteString.Parser.Fast: ParseError :: !(Set ErrorItem) -> !(Set ErrorItem) -> ParseError
+ ByteString.Parser.Fast: ParseError :: !Set ErrorItem -> !Set ErrorItem -> ParseError
- ByteString.Parser.Fast: Parser :: forall r. ByteString -> (ParseError -> r) -> (ByteString -> a -> r) -> r -> ParserM a
+ ByteString.Parser.Fast: Parser :: (forall r. ByteString -> (ParseError -> r) -> (ByteString -> a -> r) -> r) -> ParserM a
- ByteString.Parser.Fast: [errorExpected] :: ParseError -> !(Set ErrorItem)
+ ByteString.Parser.Fast: [errorExpected] :: ParseError -> !Set ErrorItem
- ByteString.Parser.Fast: [errorUnexpected] :: ParseError -> !(Set ErrorItem)
+ ByteString.Parser.Fast: [errorUnexpected] :: ParseError -> !Set ErrorItem

Files

CHANGELOG.md view
@@ -1,3 +1,7 @@+v0.3.1.2++  * Push bounds for the container package+ v0.3.1.1    * Merged [Typetetris](https://github.com/typetetris) PR, making the package compatible with GHC 8.4+
fastparser.cabal view
@@ -1,5 +1,5 @@ name:                fastparser-version:             0.3.1.1+version:             0.3.1.2 synopsis:            A fast, but bare bones, bytestring parser combinators library. description:         Please see README.md homepage:            https://github.com/bartavelle/fastparser#readme@@ -12,7 +12,7 @@ build-type:          Simple extra-source-files:  CHANGELOG.md, README.md cabal-version:       >=1.10-Tested-With:         GHC == 7.10.2, GHC == 8.0.2, GHC == 8.2.1+Tested-With:         GHC == 7.10.2, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.4  library   hs-source-dirs:      src@@ -23,7 +23,7 @@                      , vector-space      >= 0.10 && < 1                      , microlens         == 0.4.*                      , bytestring-lexing == 0.5.*-                     , containers        == 0.5.*+                     , containers        >= 0.5 && < 0.7                      , kan-extensions    == 5.*                      , transformers      >= 0.4   ghc-options:         -O2 -Wall