From 7e03ae62fd24ba8e2883e53ebc09f311bd6412ff Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Wed, 29 Dec 2021 21:36:52 +0100 Subject: [PATCH] Prepare to release 1.1.1 --- README.md | 29 +++++++++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ac0a3a9..fd016969 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,35 @@ The `user_data` pointer will be forwarded from `json_settings` to allow applicat context to be passed. +Changes in version 1.1.1 +------------------------ + +* Always use size_t for memory size + +* Use C89 constants such as ULONG_MAX instead of calculating them + +* Fix Coverity Scan defects (assignment of overlapping memory) + +* Consistent error messages + +* Fix read overflow + +* Minimize included header files, reorder header file inclusion + +* Fix buffer overrun in truncated Nnicode escape sequences + +* Fix autotools build issues + +* Fix compiler warnings + +* Fix typos and remove trailing spaces + +* Handle interger overflow + +* Add tests + +* Prevent zero-byte allocations + Changes in version 1.1.0 ------------------------ diff --git a/configure.ac b/configure.ac index d5d4488c..7ded06aa 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ AC_PREREQ([2.49]) -AC_INIT([libjsonparser], [1.1.0], []) +AC_INIT([libjsonparser], [1.1.1], []) VERSION_MAJOR="1.1" AC_PROG_CC