toml-reader-parse 0.1.1.0 → 0.1.1.1
raw patch · 6 files changed
+23/−19 lines, 6 filesdep −mtldep ~basePVP ok
version bump matches the API change (PVP)
Dependencies removed: mtl
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- Changelog.md +13/−0
- Changelog.org +0/−8
- Readme.md +6/−0
- Readme.org +0/−6
- src/TOML/Parse.hs +1/−1
- toml-reader-parse.cabal +3/−4
+ Changelog.md view
@@ -0,0 +1,13 @@+# 0.1.1.1++- Removed `mtl` dependency++# 0.1.1.0+- Add tests+- Mark `FromToml Value String` as overlapping - now it can be derived for newtypes+- Rename old `pTable` into `pTableL`, introduce `pTable` with produces value without location+- Rework `FromToml b (L a)` to delegate work to `FromToml b a`++# 0.1.0.0+Initial release+
− Changelog.org
@@ -1,8 +0,0 @@-* 0.1.1.0-- Add tests-- Mark ~FromToml Value String~ as overlapping - now it can be derived for newtypes-- Rename old ~pTable~ into ~pTableL~, introduce ~pTable~ with produces value without location-- Rework ~FromToml b (L a)~ to delegate work to ~FromToml b a~-* 0.1.0.0-Initial release-
+ Readme.md view
@@ -0,0 +1,6 @@+# Synopsis++Parser combinators for directly parsing TOML values produced by+`toml-reader`. Parsers track where values originate in the source+document and intelligently combine errors between alternative parsing+branches to report only the most relevant error to the user.
− Readme.org
@@ -1,6 +0,0 @@-#+STARTUP: content--Parser combinators for directly parsing TOML values produced by-`toml-reader`. Parsers track where values originate in the source-document and intelligently combine errors between alternative parsing-branches to report only the most relevant error to the user.
src/TOML/Parse.hs view
@@ -57,7 +57,7 @@ import Control.Applicative import Control.Comonad import Control.DeepSeq-import Control.Monad.Except+import Control.Monad import Data.Bifunctor import Data.DList (DList)
toml-reader-parse.cabal view
@@ -3,7 +3,7 @@ name: toml-reader-parse version:- 0.1.1.0+ 0.1.1.1 synopsis: Alternative parser for TOML values produced by the toml-reader package. @@ -28,8 +28,8 @@ Simple extra-source-files:- Readme.org- Changelog.org+ Readme.md+ Changelog.md homepage: https://github.com/sergv/toml-reader-parse source-repository head@@ -73,7 +73,6 @@ , deepseq , dlist , toml-reader >= 0.1- , mtl , prettyprinter >= 1.7 , prettyprinter-combinators , text