File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ project(cJSON C)
9
9
10
10
set (PROJECT_VERSION_MAJOR 1 )
11
11
set (PROJECT_VERSION_MINOR 3 )
12
- set (PROJECT_VERSION_PATCH 0 )
12
+ set (PROJECT_VERSION_PATCH 1 )
13
13
set (CJSON_VERSION_SO 1 )
14
14
set (CJSON_UTILS_VERSION_SO 1 )
15
15
set (PROJECT_VERSION "${PROJECT_VERSION_MAJOR} .${PROJECT_VERSION_MINOR} .${PROJECT_VERSION_PATCH} " )
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ UTILS_TEST_SRC = cJSON.c cJSON_Utils.c test_utils.c
10
10
11
11
LDLIBS = -lm
12
12
13
- LIBVERSION = 1.3.0
13
+ LIBVERSION = 1.3.1
14
14
CJSON_SOVERSION = 1
15
15
UTILS_SOVERSION = 1
16
16
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ const char *cJSON_GetErrorPtr(void)
45
45
}
46
46
47
47
/* This is a safeguard to prevent copy-pasters from using incompatible C and header files */
48
- #if (CJSON_VERSION_MAJOR != 1 ) || (CJSON_VERSION_MINOR != 3 ) || (CJSON_VERSION_PATCH != 0 )
48
+ #if (CJSON_VERSION_MAJOR != 1 ) || (CJSON_VERSION_MINOR != 3 ) || (CJSON_VERSION_PATCH != 1 )
49
49
#error cJSON.h and cJSON.c have different versions. Make sure that both have the same.
50
50
#endif
51
51
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ extern "C"
31
31
/* project version */
32
32
#define CJSON_VERSION_MAJOR 1
33
33
#define CJSON_VERSION_MINOR 3
34
- #define CJSON_VERSION_PATCH 0
34
+ #define CJSON_VERSION_PATCH 1
35
35
36
36
/* returns the version of cJSON as a string */
37
37
extern const char * cJSON_Version (void );
You can’t perform that action at this time.
0 commit comments