Skip to content

Commit 69402d1

Browse files
committed
Bump minor version, SOVERSION
1 parent 9a629bc commit 69402d1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ if(NOT DEFINED CMAKE_BUILD_TYPE)
6363
endif()
6464

6565
project(JSONCPP
66-
VERSION 1.8.4 # <major>[.<minor>[.<patch>[.<tweak>]]]
66+
VERSION 1.9.0 # <major>[.<minor>[.<patch>[.<tweak>]]]
6767
LANGUAGES CXX)
6868

6969
set( JSONCPP_VERSION ${JSONCPP_VERSION_MAJOR}.${JSONCPP_VERSION_MINOR}.${JSONCPP_VERSION_PATCH} )
7070
message(STATUS "JsonCpp Version: ${JSONCPP_VERSION_MAJOR}.${JSONCPP_VERSION_MINOR}.${JSONCPP_VERSION_PATCH}")
71-
set( JSONCPP_SOVERSION 19 )
71+
set( JSONCPP_SOVERSION 21 )
7272

7373
option(JSONCPP_WITH_TESTS "Compile and (for jsoncpp_check) run JsonCpp test executables" ON)
7474
option(JSONCPP_WITH_POST_BUILD_UNITTEST "Automatically run unit-tests as a post build step" ON)

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'jsoncpp',
33
'cpp',
4-
version : '1.8.4',
4+
version : '1.9.0',
55
default_options : [
66
'buildtype=release',
77
'cpp_std=c++11',
@@ -62,7 +62,7 @@ jsoncpp_lib = library(
6262
'src/lib_json/json_reader.cpp',
6363
'src/lib_json/json_value.cpp',
6464
'src/lib_json/json_writer.cpp'],
65-
soversion : 20,
65+
soversion : 21,
6666
install : true,
6767
include_directories : jsoncpp_include_directories,
6868
cpp_args: dll_export_flag)

0 commit comments

Comments
 (0)