packages feed

bookhound 0.2.0 → 0.2.1

raw patch · 2 files changed

+2/−2 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

bookhound.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           bookhound-version:        0.2.0+version:        0.2.1 synopsis:       Simple Parser Combinators description:    Please see the README on GitHub at <https://github.com/albertprz/bookhound#readme> category:       Parser Combinators
src/Bookhound/Parser.hs view
@@ -44,7 +44,7 @@   mempty = pure mempty  instance Alternative Parser where-  (<|>) (P p t e) (P p' t' e') =+  (<|>) (P p t e) ~(P p' t' e') =     applyTransformsErrors [ t, t' ] [ e, e' ] $       mkParser         \x -> case p x of