packages feed

boomerang 1.4.9.3 → 1.4.9.4

raw patch · 1 files changed

+3/−3 lines, 1 filesdep ~template-haskellPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: template-haskell

API changes (from Hackage documentation)

- Text.Boomerang.Combinators: rFalse :: forall tok e r. Boomerang e tok r ((:-) Bool r)
+ Text.Boomerang.Combinators: rFalse :: forall tok e r. Boomerang e tok r (Bool :- r)
- Text.Boomerang.Combinators: rJust :: forall tok e r a_11. Boomerang e tok ((:-) a_11 r) ((:-) (Maybe a_11) r)
+ Text.Boomerang.Combinators: rJust :: forall tok e r a. Boomerang e tok (a :- r) (Maybe a :- r)
- Text.Boomerang.Combinators: rLeft :: forall tok e r a_a7g2 b_a7g3. Boomerang e tok ((:-) a_a7g2 r) ((:-) (Either a_a7g2 b_a7g3) r)
+ Text.Boomerang.Combinators: rLeft :: forall tok e r a b. Boomerang e tok (a :- r) (Either a b :- r)
- Text.Boomerang.Combinators: rNothing :: forall tok e r a_11. Boomerang e tok r ((:-) (Maybe a_11) r)
+ Text.Boomerang.Combinators: rNothing :: forall tok e r a. Boomerang e tok r (Maybe a :- r)
- Text.Boomerang.Combinators: rRight :: forall tok e r a_a7g2 b_a7g3. Boomerang e tok ((:-) b_a7g3 r) ((:-) (Either a_a7g2 b_a7g3) r)
+ Text.Boomerang.Combinators: rRight :: forall tok e r a b. Boomerang e tok (b :- r) (Either a b :- r)
- Text.Boomerang.Combinators: rTrue :: forall tok e r. Boomerang e tok r ((:-) Bool r)
+ Text.Boomerang.Combinators: rTrue :: forall tok e r. Boomerang e tok r (Bool :- r)
- Text.Boomerang.Pos: type family Pos err :: *
+ Text.Boomerang.Pos: type family Pos err
- Text.Boomerang.Prim: val :: forall e tok a r. Parser e tok a -> (a -> [tok -> tok]) -> Boomerang e tok r (a :- r)
+ Text.Boomerang.Prim: val :: Parser e tok a -> (a -> [tok -> tok]) -> Boomerang e tok r (a :- r)

Files

boomerang.cabal view
@@ -1,5 +1,5 @@ Name:             boomerang-Version:          1.4.9.3+Version:          1.4.9.4 License:          BSD3 License-File:     LICENSE Author:           jeremy@seereason.com@@ -10,14 +10,14 @@ Description:      Specify a single unified grammar which can be used for parsing and pretty-printing Cabal-Version:    >= 1.10 Build-type:       Simple-tested-with:      GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.1, GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC==9.2.5, GHC==9.4.8, GHC==9.6.4, GHC==9.8.2+tested-with:      GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.1, GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC==9.2.5, GHC==9.4.8, GHC==9.6.4, GHC==9.8.2, GHC==9.10.1  Library         Default-Language: Haskell2010         Build-Depends:    base             >= 4    && < 5,                           mtl              >= 2.0  && < 2.4,                           semigroups       >= 0.16 && < 0.21,-                          template-haskell            < 2.22,+                          template-haskell            < 2.23,                           text             >= 0.11 && < 2.2,                           th-abstraction   >= 0.4  && < 0.8         Exposed-Modules:  Text.Boomerang