abnf 0.3.1.0 → 0.3.2.0
raw patch · 1 files changed
+2/−2 lines, 1 filesdep ~basePVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base
API changes (from Hackage documentation)
- Text.ABNF.Document: filterDocument :: (Document a -> Bool) -> Document a -> Maybe (Document a)
+ Text.ABNF.Document: filterDocument :: forall a. (Document a -> Bool) -> Document a -> Maybe (Document a)
- Text.ABNF.Document: lookupDocument :: Text -> Document a -> [Document a]
+ Text.ABNF.Document: lookupDocument :: forall a. Text -> Document a -> [Document a]
- Text.ABNF.Document: squashDocumentOn :: Monoid a => (Document a -> Bool) -> Document a -> Document a
+ Text.ABNF.Document: squashDocumentOn :: forall a. Monoid a => (Document a -> Bool) -> Document a -> Document a
- Text.ABNF.Document.Operations: filterDocument :: (Document a -> Bool) -> Document a -> Maybe (Document a)
+ Text.ABNF.Document.Operations: filterDocument :: forall a. (Document a -> Bool) -> Document a -> Maybe (Document a)
- Text.ABNF.Document.Operations: lookupDocument :: Text -> Document a -> [Document a]
+ Text.ABNF.Document.Operations: lookupDocument :: forall a. Text -> Document a -> [Document a]
- Text.ABNF.Document.Operations: squashDocumentOn :: Monoid a => (Document a -> Bool) -> Document a -> Document a
+ Text.ABNF.Document.Operations: squashDocumentOn :: forall a. Monoid a => (Document a -> Bool) -> Document a -> Document a
Files
- abnf.cabal +2/−2
abnf.cabal view
@@ -2,7 +2,7 @@ -- see http://haskell.org/cabal/users-guide/ name: abnf-version: 0.3.1.0+version: 0.3.2.0 synopsis: Parse ABNF and generate parsers for the specified document description: You can use this library to parse an ABNF document and generate a parser from that ABNF to read a document@@ -37,7 +37,7 @@ ghc-options: -W -- other-modules: -- other-extensions: - build-depends: base >=4.8 && <4.9,+ build-depends: base >=4.8 && <4.10, text, megaparsec, attoparsec,