From 981f59b1638ee7f23c382c3cd94643f06609289c Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Mon, 30 Jan 2017 19:36:36 +0100 Subject: [PATCH] Release Version 1.2.1 --- CMakeLists.txt | 2 +- Makefile | 2 +- cJSON.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2e87311..2fffabf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ project(cJSON C) set(PROJECT_VERSION_MAJOR 1) set(PROJECT_VERSION_MINOR 2) -set(PROJECT_VERSION_PATCH 0) +set(PROJECT_VERSION_PATCH 1) 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 e58b4b6..532cd99 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ UTILS_TEST_SRC = cJSON.c cJSON_Utils.c test_utils.c LDLIBS = -lm -LIBVERSION = 1.2.0 +LIBVERSION = 1.2.1 CJSON_SOVERSION = 1 UTILS_SOVERSION = 1 diff --git a/cJSON.h b/cJSON.h index 4ef0396..a9bf4f2 100644 --- a/cJSON.h +++ b/cJSON.h @@ -31,7 +31,7 @@ extern "C" /* project version */ #define CJSON_VERSION_MAJOR 1 #define CJSON_VERSION_MINOR 2 -#define CJSON_VERSION_PATCH 0 +#define CJSON_VERSION_PATCH 1 /* returns the version of cJSON as a string */ extern const char* cJSON_Version(void);