Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Prepare to release 1.1.1 #158

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
------------------------

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -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
Expand Down