indentation-trifecta 0.0.2 → 0.1.0
raw patch · 2 files changed
+9/−4 lines, 2 filesdep ~basedep ~indentation-coredep ~trifectaPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, indentation-core, trifecta
API changes (from Hackage documentation)
- Text.Trifecta.Indentation: class IndentationParsing m where localAbsoluteIndentation = ignoreAbsoluteIndentation . absoluteIndentation
+ Text.Trifecta.Indentation: class IndentationParsing m
- Text.Trifecta.Indentation: data IndentationRel :: *
+ Text.Trifecta.Indentation: data IndentationRel
- Text.Trifecta.Indentation: data IndentationState :: *
+ Text.Trifecta.Indentation: data IndentationState
Files
- CHANGELOG.md +5/−0
- indentation-trifecta.cabal +4/−4
CHANGELOG.md view
@@ -1,3 +1,8 @@+# 0.1.0++* Support 'trifecta-2'+* Bump `base` bounds to support GHC 8.6.1 (and 8.4.3)+ # 0.0.2 * Support 'trifecta-1.7'
indentation-trifecta.cabal view
@@ -1,5 +1,5 @@ name: indentation-trifecta-version: 0.0.2+version: 0.1.0 synopsis: Indentation sensitive parsing combinators for Trifecta description: Indentation sensitive parsing combinators for Trifecta. . @@ -37,10 +37,10 @@ library hs-source-dirs: src- build-depends: base >=4.6 && <4.12,+ build-depends: base >=4.6 && <4.13, mtl >=2.1,- indentation-core == 0.0.0.1,- trifecta >=1.4 && <1.8,+ indentation-core < 0.0.1,+ trifecta < 2 || == 2, parsers >=0.10 && <0.13 exposed-modules: Text.Trifecta.Indentation