[Haskell-cafe] ANN: haskell-src-exts-1.3.0

2009-11-04 Thread Niklas Broberg
Fellow Haskelleers, I'm pleased to announce the release of haskell-src-exts-1.3.0! * On hackage: http://hackage.haskell.org/package/haskell-src-exts * Via cabal: cabal install haskell-src-exts * Darcs repo: http://code.haskell.org/haskell-src-exts Version 1.3.0 is a new major release, following

Re: [Haskell-cafe] ANN: haskell-src-exts-1.3.0

2009-11-04 Thread Jose Iborra
Brilliant ! This release promptly fixes an annoying bug I was about to report with the pretty printing (not exact) of infix function declarations like instance Applicative (Either e) where pure = Right Right f * Right x = Right (f x) Left e * _ = Left e _ * Left e = Left