megaparsec-time 0.0.1.0 → 0.1.0.0
raw patch · 3 files changed
+18/−5 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +8/−0
- megaparsec-time.cabal +1/−1
- src/Text/Megaparsec/Time.hs +9/−4
CHANGELOG.md view
@@ -0,0 +1,8 @@+Changelog++# 1.0.0 (2025-07-28)+++### Features++* initial release ([fcab952](https://github.com/drlkf/megaparsec-time/commit/fcab952d7f6331dd8b169cb6ef70ab08edec910b))
megaparsec-time.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: megaparsec-time-version: 0.0.1.0+version: 0.1.0.0 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
@@ -8,15 +8,20 @@ -- Maintainer : drlkf@drlkf.net -- Stability : experimental module Text.Megaparsec.Time (+ -- * Types. DayResult,- dateParser,- dayParser,- durationParser,- gregorianDayParser,++ -- * Simple parsers. hoursParser, minutesParser, secondsParser, timeParser,+ dayParser,+ gregorianDayParser,++ -- * Composite parsers.+ dateParser,+ durationParser, ) where import Control.Applicative (optional, (<|>))