indents 0.5.0.0 → 0.5.0.1
raw patch · 2 files changed
+5/−2 lines, 2 filesdep ~mtldep ~tastyPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: mtl, tasty
API changes (from Hackage documentation)
- Text.Parsec.Indent: (<?/>) :: (Monad m, Stream s (IndentT m) z) => IndentParserT s u m (a -> b) -> (Optional s u m a) -> IndentParserT s u m b
+ Text.Parsec.Indent: (<?/>) :: (Monad m, Stream s (IndentT m) z) => IndentParserT s u m (a -> b) -> Optional s u m a -> IndentParserT s u m b
- Text.Parsec.Indent: Opt :: a -> (IndentParserT s u m a) -> Optional s u m a
+ Text.Parsec.Indent: Opt :: a -> IndentParserT s u m a -> Optional s u m a
Files
- CHANGELOG.md +3/−0
- indents.cabal +2/−2
CHANGELOG.md view
@@ -1,6 +1,9 @@ Changelog ========= +- 0.5.0.1 (2019-10-02)+ * Bump `tasty` dependency to 1.2.3+ - 0.5.0.0 (2018-06-22) * Add the `Text.Parsec.Indent.Explicit` module
indents.cabal view
@@ -1,5 +1,5 @@ Name: indents-Version: 0.5.0.0+Version: 0.5.0.1 Synopsis: indentation sensitive parser-combinators for parsec Description: This library provides functions for use in parsing indentation sensitive contexts. It parses blocks of lines all indented to the same level as well as lines continued at an indented level below. Homepage: http://github.com/jaspervdj/indents@@ -47,7 +47,7 @@ Build-depends: indents,- tasty >= 0.11 && < 1.1,+ tasty >= 0.11 && < 1.2.4, tasty-hunit >= 0.9 && < 0.11, -- Copy-pasted from 'Library' dependencies. base >= 4 && < 5,