megaparsec-utils 0.1.1.1 → 0.1.1.2
raw patch · 3 files changed
+14/−7 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +2/−0
- megaparsec-utils.cabal +1/−1
- src/Text/Megaparsec/Utils.hs +11/−6
CHANGELOG.md view
@@ -1,5 +1,7 @@ Changelog +## [1.1.2](https://github.com/drlkf/megaparsec-utils/compare/1.1.1...1.1.2) (2025-07-29)+ ## [1.1.1](https://github.com/drlkf/megaparsec-utils/compare/1.1.0...1.1.1) (2025-07-28) # [1.1.0](https://github.com/drlkf/megaparsec-utils/compare/1.0.0...1.1.0) (2025-07-28)
megaparsec-utils.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: megaparsec-utils-version: 0.1.1.1+version: 0.1.1.2 synopsis: Parsers and utilities for the Megaparsec library. description: Common parsers and utilities to use with the Megaparsec library. category: Parsing
src/Text/Megaparsec/Utils.hs view
@@ -12,17 +12,22 @@ -- -- Generic utilities and common parsers. module Text.Megaparsec.Utils (+ -- * Scalar parsers boolParser,- boundedEnumShowParser,- commaSeparated, numParser,- occurrence,- occurrences,- parsecToJSONParser,- parsecToReadsPrec, posDecNumParser, posNumParser, uuidParser,++ -- * Combinators+ commaSeparated,+ occurrence,+ occurrences,++ -- * Compatibility utilities+ boundedEnumShowParser,+ parsecToReadsPrec,+ parsecToJSONParser, ) where import Control.Applicative (many, some, (<|>))