Skip to content

Commit 981f59b

Browse files
committed
Release Version 1.2.1
1 parent e4eadb9 commit 981f59b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ project(cJSON C)
77

88
set(PROJECT_VERSION_MAJOR 1)
99
set(PROJECT_VERSION_MINOR 2)
10-
set(PROJECT_VERSION_PATCH 0)
10+
set(PROJECT_VERSION_PATCH 1)
1111
set(CJSON_VERSION_SO 1)
1212
set(CJSON_UTILS_VERSION_SO 1)
1313
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ UTILS_TEST_SRC = cJSON.c cJSON_Utils.c test_utils.c
1010

1111
LDLIBS = -lm
1212

13-
LIBVERSION = 1.2.0
13+
LIBVERSION = 1.2.1
1414
CJSON_SOVERSION = 1
1515
UTILS_SOVERSION = 1
1616

cJSON.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ extern "C"
3131
/* project version */
3232
#define CJSON_VERSION_MAJOR 1
3333
#define CJSON_VERSION_MINOR 2
34-
#define CJSON_VERSION_PATCH 0
34+
#define CJSON_VERSION_PATCH 1
3535

3636
/* returns the version of cJSON as a string */
3737
extern const char* cJSON_Version(void);

0 commit comments

Comments
 (0)