Version bump to 0.2

This commit is contained in:
Benno Fünfstück 2013-12-23 17:20:53 +01:00
parent 76614f7476
commit b0134eb7bb
2 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,5 @@
name: haskell-generate
version: 0.1
version: 0.2
license: BSD3
category: Code Generation, Language
cabal-version: >= 1.10

View File

@ -150,7 +150,6 @@ applyE a b = wrap $ liftM (foldl1 App) $ sequence [unwrap a, unwrap b]
where wrap = fmap Expression
unwrap = fmap runExpression
-- | Operator for 'applyE'.
(<>$) :: ExpG (a -> b) -> ExpG a -> ExpG b
(<>$) = applyE