Bump minor version, SOVERSION

This commit is contained in:
Frank Richter 2019-03-23 21:03:30 +01:00
parent 9a629bc5e1
commit 69402d1fbb
2 changed files with 4 additions and 4 deletions

View File

@ -63,12 +63,12 @@ if(NOT DEFINED CMAKE_BUILD_TYPE)
endif()
project(JSONCPP
VERSION 1.8.4 # <major>[.<minor>[.<patch>[.<tweak>]]]
VERSION 1.9.0 # <major>[.<minor>[.<patch>[.<tweak>]]]
LANGUAGES CXX)
set( JSONCPP_VERSION ${JSONCPP_VERSION_MAJOR}.${JSONCPP_VERSION_MINOR}.${JSONCPP_VERSION_PATCH} )
message(STATUS "JsonCpp Version: ${JSONCPP_VERSION_MAJOR}.${JSONCPP_VERSION_MINOR}.${JSONCPP_VERSION_PATCH}")
set( JSONCPP_SOVERSION 19 )
set( JSONCPP_SOVERSION 21 )
option(JSONCPP_WITH_TESTS "Compile and (for jsoncpp_check) run JsonCpp test executables" ON)
option(JSONCPP_WITH_POST_BUILD_UNITTEST "Automatically run unit-tests as a post build step" ON)

View File

@ -1,7 +1,7 @@
project(
'jsoncpp',
'cpp',
version : '1.8.4',
version : '1.9.0',
default_options : [
'buildtype=release',
'cpp_std=c++11',
@ -62,7 +62,7 @@ jsoncpp_lib = library(
'src/lib_json/json_reader.cpp',
'src/lib_json/json_value.cpp',
'src/lib_json/json_writer.cpp'],
soversion : 20,
soversion : 21,
install : true,
include_directories : jsoncpp_include_directories,
cpp_args: dll_export_flag)