From 93ac4cfa5c831e1f107485b2ef16c6f4c5a797a1 Mon Sep 17 00:00:00 2001 From: Daniel Parker Date: Tue, 17 Oct 2023 16:36:54 -0400 Subject: [PATCH] CHANGELOG update, version update --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- CHANGELOG.md | 12 ++++++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index d18424f4ee..77fb209f4d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -24,6 +24,6 @@ assignees: '' **What jsoncons library version?** - - [ ] Latest release 0.171.0 + - [ ] Latest release 0.171.1 - [ ] Other release ______ - [ ] master diff --git a/CHANGELOG.md b/CHANGELOG.md index 9525592491..78ebd224db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,18 @@ -0.171.1 (master) +0.171.1 ------- Defect fixes: -- Fixed issue danielaparker/jsoncons/#441 concerning misaligned allocation for string data. +- Fixed issue #441 concerning misaligned allocation for string data. -- Fixed issue danielaparker/jsoncons/#436 concerning overflow warning. +- Fixed issue #436 concerning overflow warning. - Changed internal variable names to avoid shadow warnings +- Fixed signature of `dump_pretty` #438 + +- Fixed `basic_json_decode_options` constructor #437 + Enhancements: - Improved error messages (with field names) for invalid type mappings when using the @@ -17,7 +21,7 @@ Enhancements: - Support char8_t and u8string for C++ 20 - Added compare for bigint/bigdec/bigfloat as double or exact text match. This makes -JSON Query work if you use options.lossless_number(true); for parsing JSON. +JSON Query work if you use `options.lossless_number(true)` for parsing JSON. 0.171.0 -------