diff --git a/CHANGELOG.md b/CHANGELOG.md index b98c9ed9b597d3c6dfe275eef0a5185cc47f0311..8e64552d535fed93e548d182a017ab08e1f4eb60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +1.5.9 +===== +* Set the global error pointer even if `return_parse_end` is passed to `cJSON_ParseWithOpts`. See #200, thanks @rmallins + 1.5.8 ===== * Fix `make test` in the Makefile, thanks @YanhaoMo for reporting this (#195) diff --git a/CMakeLists.txt b/CMakeLists.txt index a51ec966f60a22aea3ba6d331045ad26d2def828..68f3c5dda7e2a41b9acbf97481fdbbce69403722 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ project(cJSON C) set(PROJECT_VERSION_MAJOR 1) set(PROJECT_VERSION_MINOR 5) -set(PROJECT_VERSION_PATCH 8) +set(PROJECT_VERSION_PATCH 9) set(CJSON_VERSION_SO 1) set(CJSON_UTILS_VERSION_SO 1) set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") diff --git a/Makefile b/Makefile index 67b73c71c51eac2c746160f5b41308ca2fc836a4..38ca51a81042f66873a123268dff1eb3129bc454 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ CJSON_TEST_SRC = cJSON.c test.c LDLIBS = -lm -LIBVERSION = 1.5.8 +LIBVERSION = 1.5.9 CJSON_SOVERSION = 1 UTILS_SOVERSION = 1 diff --git a/cJSON.c b/cJSON.c index 1d1feea7751997f08961b2859a844bb30a2d12ea..306bb5b0df395a1847aa7711e4b38b68cf472d8c 100644 --- a/cJSON.c +++ b/cJSON.c @@ -58,7 +58,7 @@ CJSON_PUBLIC(const char *) cJSON_GetErrorPtr(void) } /* This is a safeguard to prevent copy-pasters from using incompatible C and header files */ -#if (CJSON_VERSION_MAJOR != 1) || (CJSON_VERSION_MINOR != 5) || (CJSON_VERSION_PATCH != 8) +#if (CJSON_VERSION_MAJOR != 1) || (CJSON_VERSION_MINOR != 5) || (CJSON_VERSION_PATCH != 9) #error cJSON.h and cJSON.c have different versions. Make sure that both have the same. #endif diff --git a/cJSON.h b/cJSON.h index 0be19b138d989619748f4bb4c2a7ca6e9c574b92..1e388137e7389d704719d8562f98ae4ff3823e24 100644 --- a/cJSON.h +++ b/cJSON.h @@ -31,7 +31,7 @@ extern "C" /* project version */ #define CJSON_VERSION_MAJOR 1 #define CJSON_VERSION_MINOR 5 -#define CJSON_VERSION_PATCH 8 +#define CJSON_VERSION_PATCH 9 #include