packages feed

attoparsec-data 1.0.1 → 1.0.2

raw patch · 3 files changed

+10/−1 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

+ Attoparsec.Data: string :: Parser String

Files

attoparsec-data.cabal view
@@ -1,7 +1,7 @@ name:   attoparsec-data version:-  1.0.1+  1.0.2 category:   Parsing synopsis:
library/Attoparsec/Data/Explicit.hs view
@@ -8,6 +8,7 @@   unsignedIntegral,   A.double,   A.scientific,+  string,   -- * Time   B.timeOfDayInISO8601,   B.dayInISO8601,@@ -78,3 +79,10 @@ unsignedIntegral :: Integral a => A.Parser a unsignedIntegral =   A.decimal++{-|+Plain String.+-}+string :: A.Parser String+string =+  many A.anyChar
library/Attoparsec/Data/Implicit.hs view
@@ -41,5 +41,6 @@ INSTANCE(UTCTime, A.utcTimeInISO8601) INSTANCE(DiffTime, A.diffTime) INSTANCE(NominalDiffTime, A.nominalDiffTime)+INSTANCE(String, A.string)  #undef INSTANCE