Skip to content

Commit c4904b2

Browse files
committed
Bump micro version
1 parent 54a5432 commit c4904b2

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,11 @@ project(jsoncpp
7272
# 2. ./include/json/version.h
7373
# 3. ./CMakeLists.txt
7474
# IMPORTANT: also update the PROJECT_SOVERSION!!
75-
VERSION 1.9.4 # <major>[.<minor>[.<patch>[.<tweak>]]]
75+
VERSION 1.9.5 # <major>[.<minor>[.<patch>[.<tweak>]]]
7676
LANGUAGES CXX)
7777

7878
message(STATUS "JsonCpp Version: ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
79-
set(PROJECT_SOVERSION 24)
79+
set(PROJECT_SOVERSION 25)
8080

8181
include(${CMAKE_CURRENT_SOURCE_DIR}/include/PreventInSourceBuilds.cmake)
8282
include(${CMAKE_CURRENT_SOURCE_DIR}/include/PreventInBuildInstalls.cmake)

include/json/version.h

+2-2
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.4"
12+
#define JSONCPP_VERSION_STRING "1.9.5"
1313
#define JSONCPP_VERSION_MAJOR 1
1414
#define JSONCPP_VERSION_MINOR 9
15-
#define JSONCPP_VERSION_PATCH 4
15+
#define JSONCPP_VERSION_PATCH 5
1616
#define JSONCPP_VERSION_QUALIFIER
1717
#define JSONCPP_VERSION_HEXA \
1818
((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | \

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jsoncpp_lib = library(
5050
'src/lib_json/json_value.cpp',
5151
'src/lib_json/json_writer.cpp',
5252
]),
53-
soversion : 24,
53+
soversion : 25,
5454
install : true,
5555
include_directories : jsoncpp_include_directories,
5656
cpp_args: dll_export_flag)

0 commit comments

Comments
 (0)