Skip to content

Commit 871f0cc

Browse files
authored
Release 1.9.6 and move versions to 1.9.7 (open-source-parsers#1566)
* Release 1.9.6 and move versions to 1.9.7 This patch updates versions to be for version 1.9.7. * remove log.txt
1 parent 54fc4e2 commit 871f0cc

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,11 @@ project(jsoncpp
6262
# 2. ./include/json/version.h
6363
# 3. ./CMakeLists.txt
6464
# IMPORTANT: also update the PROJECT_SOVERSION!!
65-
VERSION 1.9.6 # <major>[.<minor>[.<patch>[.<tweak>]]]
65+
VERSION 1.9.7 # <major>[.<minor>[.<patch>[.<tweak>]]]
6666
LANGUAGES CXX)
6767

6868
message(STATUS "JsonCpp Version: ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
69-
set(PROJECT_SOVERSION 26)
69+
set(PROJECT_SOVERSION 27)
7070

7171
include(${CMAKE_CURRENT_SOURCE_DIR}/include/PreventInSourceBuilds.cmake)
7272
include(${CMAKE_CURRENT_SOURCE_DIR}/include/PreventInBuildInstalls.cmake)

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.6"
12+
#define JSONCPP_VERSION_STRING "1.9.7"
1313
#define JSONCPP_VERSION_MAJOR 1
1414
#define JSONCPP_VERSION_MINOR 9
15-
#define JSONCPP_VERSION_PATCH 6
15+
#define JSONCPP_VERSION_PATCH 7
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.6',
12+
version : '1.9.7',
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 : 26,
53+
soversion : 27,
5454
install : true,
5555
include_directories : jsoncpp_include_directories,
5656
cpp_args: dll_export_flag)

0 commit comments

Comments
 (0)