packages feed

invertible-syntax 0.2 → 0.2.1

raw patch · 4 files changed

+4/−7 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

invertible-syntax.cabal view
@@ -1,5 +1,5 @@ Name:                invertible-syntax
-Version:             0.2
+Version:             0.2.1
 Synopsis:            Invertible syntax descriptions for both parsing and pretty printing.
 Description:         Invertible syntax descriptions as a common 
                      interface for parser combinator and pretty 
src/Text/Syntax/Combinators.hs view
@@ -20,14 +20,13 @@   ,  sepSpace   ,  optSpace) where -import Prelude ()+import Prelude (String)  import Control.Category ((.)) import Control.Isomorphism.Partial.Constructors (nothing, just, nil, cons, left, right) import Control.Isomorphism.Partial.Derived (foldl) import Control.Isomorphism.Partial.Prim (Iso, (<$>), inverse, element, unit, commute, ignore)  -import Data.Char (String) import Data.Maybe (Maybe) import Data.Either (Either) 
src/Text/Syntax/Parser/Naive.hs view
@@ -1,12 +1,11 @@ module Text.Syntax.Parser.Naive where -import Prelude ()+import Prelude (String)  import Control.Category () import Control.Isomorphism.Partial (IsoFunctor, (<$>), apply) import Control.Monad (Monad, return, fail, (>>=)) -import Data.Char (String) import Data.List ((++)) import Data.Maybe (Maybe (Just)) 
src/Text/Syntax/Printer/Naive.hs view
@@ -1,12 +1,11 @@ module Text.Syntax.Printer.Naive where -import Prelude ()+import Prelude (String)  import Control.Category () import Control.Isomorphism.Partial (IsoFunctor ((<$>)), unapply) import Control.Monad (Monad, return, fail, (>>=), liftM2, mplus) -import Data.Char (String) import Data.Eq (Eq ((==))) import Data.Function (($)) import Data.List ((++))