Skip to content

Commit 5977e96

Browse files
committed
Bump version to 1.9.3
* Bump SOVERSION, as some functions were removed and structs were changed, as determined by libabigail.
1 parent 5a2daaf commit 5977e96

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ project(JSONCPP
7070
# 2. /include/json/version.h
7171
# 3. /CMakeLists.txt
7272
# IMPORTANT: also update the SOVERSION!!
73-
VERSION 1.9.2 # <major>[.<minor>[.<patch>[.<tweak>]]]
73+
VERSION 1.9.3 # <major>[.<minor>[.<patch>[.<tweak>]]]
7474
LANGUAGES CXX)
7575

7676
message(STATUS "JsonCpp Version: ${JSONCPP_VERSION_MAJOR}.${JSONCPP_VERSION_MINOR}.${JSONCPP_VERSION_PATCH}")

include/json/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
// 3. /CMakeLists.txt
1010
// IMPORTANT: also update the SOVERSION!!
1111

12-
#define JSONCPP_VERSION_STRING "1.9.2"
12+
#define JSONCPP_VERSION_STRING "1.9.3"
1313
#define JSONCPP_VERSION_MAJOR 1
1414
#define JSONCPP_VERSION_MINOR 9
15-
#define JSONCPP_VERSION_PATCH 2
15+
#define JSONCPP_VERSION_PATCH 3
1616
#define JSONCPP_VERSION_QUALIFIER
1717
#define JSONCPP_VERSION_HEXA \
1818
((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | \

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ project(
99
# 2. /include/json/version.h
1010
# 3. /CMakeLists.txt
1111
# IMPORTANT: also update the SOVERSION!!
12-
version : '1.9.2',
12+
version : '1.9.3',
1313
default_options : [
1414
'buildtype=release',
1515
'cpp_std=c++11',
@@ -50,7 +50,7 @@ jsoncpp_lib = library(
5050
'src/lib_json/json_value.cpp',
5151
'src/lib_json/json_writer.cpp',
5252
]),
53-
soversion : 22,
53+
soversion : 23,
5454
install : true,
5555
include_directories : jsoncpp_include_directories,
5656
cpp_args: dll_export_flag)

0 commit comments

Comments
 (0)