megaparsec-time 0.2.0.0 → 0.2.0.1
raw patch · 3 files changed
+6/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +2/−0
- megaparsec-time.cabal +1/−1
- src/Text/Megaparsec/Time.hs +3/−3
CHANGELOG.md view
@@ -1,5 +1,7 @@ Changelog +## [2.0.1](https://github.com/drlkf/megaparsec-time/compare/2.0.0...2.0.1) (2025-07-29)+ # [2.0.0](https://github.com/drlkf/megaparsec-time/compare/1.0.1...2.0.0) (2025-07-28) ## [1.0.1](https://github.com/drlkf/megaparsec-time/compare/1.0.0...1.0.1) (2025-07-28)
megaparsec-time.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: megaparsec-time-version: 0.2.0.0+version: 0.2.0.1 synopsis: Parsers and utilities for the Megaparsec library. description: Common parsers and utilities to use with the Megaparsec library. category: Parsing
src/Text/Megaparsec/Time.hs view
@@ -10,10 +10,10 @@ -- -- Parsers for types related to time to use with 'megaparsec'. module Text.Megaparsec.Time (- -- * Types.+ -- * Types DayResult, - -- * Simple parsers.+ -- * Simple parsers hoursParser, minutesParser, secondsParser,@@ -21,7 +21,7 @@ dayParser, gregorianDayParser, - -- * Composite parsers.+ -- * Composite parsers dateParser, durationParser, ) where