htoml-megaparsec 1.0.1.12 → 1.1.0.0
raw patch · 2 files changed
+4/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
+ Text.Toml: parseErrorPretty :: (Ord t, ShowToken t, ShowErrorComponent e) => ParseError t e -> String
Files
- htoml-megaparsec.cabal +1/−1
- src/Text/Toml.hs +3/−1
htoml-megaparsec.cabal view
@@ -1,5 +1,5 @@ name: htoml-megaparsec-version: 1.0.1.12+version: 1.1.0.0 synopsis: Parser for TOML files description: TOML is an obvious and minimal format for config files. This package provides a TOML parser
src/Text/Toml.hs view
@@ -1,4 +1,6 @@-module Text.Toml where+module Text.Toml ( parseTomlDoc+ , parseErrorPretty+ ) where import Control.Composition import Control.Monad.State (evalState)