From ffef3f79b48eeecbe89fc050baed964953b54e47 Mon Sep 17 00:00:00 2001 From: Tom Sydney Kerckhove Date: Wed, 27 Sep 2023 12:41:19 +0200 Subject: [PATCH] ready to release --- autodocodec/CHANGELOG.md | 7 +++++++ autodocodec/autodocodec.cabal | 2 +- autodocodec/default.nix | 2 +- autodocodec/package.yaml | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/autodocodec/CHANGELOG.md b/autodocodec/CHANGELOG.md index 956e4d0..f612239 100644 --- a/autodocodec/CHANGELOG.md +++ b/autodocodec/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.0.5] - 2023-08-27 + +### Added + +* JSON Object-specific versions of encoding and decoding functions +* Documentation about how 'parseAlternative' and 'optionalField' together can be a pitfall. + ## [0.2.0.4] - 2023-07-31 ### Added diff --git a/autodocodec/autodocodec.cabal b/autodocodec/autodocodec.cabal index 5f95bbc..fc203eb 100644 --- a/autodocodec/autodocodec.cabal +++ b/autodocodec/autodocodec.cabal @@ -5,7 +5,7 @@ cabal-version: 1.12 -- see: https://github.com/sol/hpack name: autodocodec -version: 0.2.0.4 +version: 0.2.0.5 synopsis: Self-documenting encoder and decoder homepage: https://github.com/NorfairKing/autodocodec#readme bug-reports: https://github.com/NorfairKing/autodocodec/issues diff --git a/autodocodec/default.nix b/autodocodec/default.nix index 6cad1e6..2f2a94d 100644 --- a/autodocodec/default.nix +++ b/autodocodec/default.nix @@ -4,7 +4,7 @@ }: mkDerivation { pname = "autodocodec"; - version = "0.2.0.4"; + version = "0.2.0.5"; src = ./.; libraryHaskellDepends = [ aeson base bytestring containers hashable mtl scientific text time diff --git a/autodocodec/package.yaml b/autodocodec/package.yaml index fe381df..0f4efea 100644 --- a/autodocodec/package.yaml +++ b/autodocodec/package.yaml @@ -1,5 +1,5 @@ name: autodocodec -version: 0.2.0.4 +version: 0.2.0.5 github: "NorfairKing/autodocodec" license: MIT author: "Tom Sydney Kerckhove"