Skip to content

Commit e9bd26d

Browse files
committed
Update the master branch to version 0.18.99
1 parent 7ebdc4d commit e9bd26d

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ cmake_minimum_required(VERSION 3.9...3.12)
77

88
# JSON-C library is C only project.
99
# PROJECT_VERSION{,_MAJOR,_MINOR,_PATCH} set by project():
10-
project(json-c LANGUAGES C VERSION 0.17.99)
10+
project(json-c LANGUAGES C VERSION 0.18.99)
1111

1212
# set default build type if not specified by user
1313
if(NOT CMAKE_BUILD_TYPE)
@@ -470,7 +470,7 @@ add_library(${PROJECT_NAME}
470470
${JSON_C_HEADERS}
471471
)
472472
set_target_properties(${PROJECT_NAME} PROPERTIES
473-
VERSION 5.3.0
473+
VERSION 5.4.0
474474
SOVERSION 5)
475475
list(APPEND CMAKE_TARGETS ${PROJECT_NAME})
476476
# If json-c is used as subroject it set to target correct interface -I flags and allow

ChangeLog

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
0.18.99 (future release)
2+
========================================
3+
4+
Deprecated and removed features:
5+
--------------------------------
6+
* none yet
7+
8+
New features
9+
------------
10+
* none yet
11+
12+
Significant changes and bug fixes
13+
---------------------------------
14+
* none yet
15+
116
0.18 (up to commit 6bfab90, 2023-09-15)
217
========================================
318

json-c.sym

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,3 +180,7 @@ JSONC_0.17 {
180180
JSONC_0.18 {
181181
# global:
182182
} JSONC_0.17;
183+
184+
JSONC_0.19 {
185+
# global:
186+
} JSONC_0.18;

json_c_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ extern "C" {
1717
#endif
1818

1919
#define JSON_C_MAJOR_VERSION 0
20-
#define JSON_C_MINOR_VERSION 17
20+
#define JSON_C_MINOR_VERSION 18
2121
#define JSON_C_MICRO_VERSION 99
2222
#define JSON_C_VERSION_NUM \
2323
((JSON_C_MAJOR_VERSION << 16) | (JSON_C_MINOR_VERSION << 8) | JSON_C_MICRO_VERSION)
24-
#define JSON_C_VERSION "0.17.99"
24+
#define JSON_C_VERSION "0.18.99"
2525

2626
#ifndef JSON_EXPORT
2727
#if defined(_MSC_VER) && defined(JSON_C_DLL)

0 commit comments

Comments
 (0)