packages feed

attoparsec-time 1.0.1.2 → 1.0.2

raw patch · 3 files changed

+10/−2 lines, 3 filesdep ~textPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: text

API changes (from Hackage documentation)

+ Attoparsec.Time.ByteString: hour :: Parser Int
+ Attoparsec.Time.ByteString: minute :: Parser Int
+ Attoparsec.Time.ByteString: second :: Parser Pico
+ Attoparsec.Time.Text: hour :: Parser Int
+ Attoparsec.Time.Text: minute :: Parser Int
+ Attoparsec.Time.Text: second :: Parser Pico

Files

attoparsec-time.cabal view
@@ -1,5 +1,5 @@ name: attoparsec-time-version: 1.0.1.2+version: 1.0.2 synopsis: Attoparsec parsers of time description: A collection of Attoparsec parsers for the \"time\" library category: Attoparsec, Parsers, Time@@ -32,5 +32,5 @@     attoparsec >=0.13 && <0.15,     base >=4.9 && <5,     bytestring >=0.10 && <0.12,-    text >=1 && <2,+    text >=1 && <3,     time >=1.4 && <2
library/Attoparsec/Time/ByteString.hs view
@@ -10,6 +10,10 @@   utcTimeInISO8601,   diffTime,   nominalDiffTime,+  -- *+  hour,+  minute,+  second, ) where 
library/Attoparsec/Time/Text.hs view
@@ -7,6 +7,10 @@   utcTimeInISO8601,   diffTime,   nominalDiffTime,+  -- *+  hour,+  minute,+  second, ) where