packages feed

autodocodec 0.1.0.2 → 0.1.0.3

raw patch · 3 files changed

+11/−5 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,11 @@ # Changelog +## [0.1.0.3] - 2022-07-14++### Changed++* Doctest fix+ ## [0.1.0.2] - 2022-06-24  ### Added
autodocodec.cabal view
@@ -5,13 +5,13 @@ -- see: https://github.com/sol/hpack  name:           autodocodec-version:        0.1.0.2+version:        0.1.0.3 synopsis:       Self-documenting encoder and decoder homepage:       https://github.com/NorfairKing/autodocodec#readme bug-reports:    https://github.com/NorfairKing/autodocodec/issues author:         Tom Sydney Kerckhove maintainer:     syd@cs-syd.eu-copyright:      2021 Tom Sydney Kerckhove+copyright:      2021-2022 Tom Sydney Kerckhove license:        MIT license-file:   LICENSE build-type:     Simple
src/Autodocodec/Codec.hs view
@@ -1137,8 +1137,8 @@ -- -- >>> toJSONVia scientificCodec 5 -- Number 5.0--- >>> JSON.parseMaybe scientificCodec (Number 3)--- Just 3+-- >>> JSON.parseMaybe (parseJSONVia scientificCodec) (Number 3)+-- Just 3.0 -- -- -- === WARNING@@ -1172,7 +1172,7 @@ -- >>> toJSONVia c 5 -- Number 5.0 -- >>> JSON.parseMaybe (parseJSONVia c) (Number 3)--- Just 3+-- Just 3.0 -- >>> JSON.parseMaybe (parseJSONVia c) (Number 5) -- Nothing --