aeson-better-errors 0.1.0.0 → 0.1.0.1
raw patch · 3 files changed
+15/−3 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +7/−0
- aeson-better-errors.cabal +2/−1
- src/Data/Aeson/BetterErrors.hs +6/−2
+ README.md view
@@ -0,0 +1,7 @@+# aeson-better-errors++A small package which gives you tools to build parsers to decode JSON values,+and gives good error messages when parsing fails.++* Announcement blog post / tutorial: <http://harry.garrood.me/blog/aeson-better-errors/>+* Hackage: <https://hackage.haskell.org/package/aeson-better-errors>
aeson-better-errors.cabal view
@@ -1,5 +1,5 @@ name: aeson-better-errors-version: 0.1.0.0+version: 0.1.0.1 synopsis: Better error messages when decoding JSON values. license: MIT license-file: LICENSE@@ -9,6 +9,7 @@ category: Text, Web, JSON build-type: Simple cabal-version: >=1.10+extra-source-files: README.md description: A small package which gives you the tools to build parsers to decode JSON
src/Data/Aeson/BetterErrors.hs view
@@ -1,11 +1,15 @@ {-# OPTIONS_GHC -fno-warn-unused-imports #-} --- | A module for decoding JSON, and generating good better messages. Note,+-- | A module for decoding JSON, and generating good error messages. Note, -- however, that this package only deals with generating good error messages -- /after/ the JSON has been parsed into a 'Data.Aeson.Value' - unfortunately, -- invalid JSON will still produce poor error messages. ----- See <http://harry.garrood.me/blog/aeson-better-errors/>+-- See <http://harry.garrood.me/blog/aeson-better-errors/> for a tutorial.+--+-- Any kind of feedback is very welcome: suggestions for a better designed API,+-- bug reports, whatever - the best place for it is probably the GitHub issue+-- tracker: <https://github.com/hdgarrood/aeson-better-errors/issues>. module Data.Aeson.BetterErrors ( -- * The Parser type