packages feed

attoparsec 0.9.1.1 → 0.9.1.2

raw patch · 2 files changed

+3/−1 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Data/Attoparsec/Internal/Types.hs view
@@ -155,6 +155,7 @@     (<*>)  = apP     {-# INLINE (<*>) #-} +#if MIN_VERSION_base(4,2,0)     -- These definitions are equal to the defaults, but this     -- way the optimizer doesn't have to work so hard to figure     -- that out.@@ -162,6 +163,7 @@     {-# INLINE (*>) #-}     x <* y = x >>= \a -> y >> return a     {-# INLINE (<*) #-}+#endif  instance Monoid (Parser a) where     mempty  = failDesc "mempty"
attoparsec.cabal view
@@ -1,5 +1,5 @@ name:            attoparsec-version:         0.9.1.1+version:         0.9.1.2 license:         BSD3 license-file:    LICENSE category:        Text, Parsing