Skip to content

Commit 8281fff

Browse files
chore: bump version to 1.9.9 (#1690)
Co-authored-by: baylesj <1357263+baylesj@users.noreply.github.com>
1 parent 8519b83 commit 8281fff

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ project(jsoncpp
5757
# 3. ./CMakeLists.txt
5858
# 4. ./MODULE.bazel
5959
# IMPORTANT: also update the PROJECT_SOVERSION!!
60-
VERSION 1.9.8 # <major>[.<minor>[.<patch>[.<tweak>]]]
60+
VERSION 1.9.9 # <major>[.<minor>[.<patch>[.<tweak>]]]
6161
LANGUAGES CXX)
6262

6363
message(STATUS "JsonCpp Version: ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module(
99
# 3. /CMakeLists.txt
1010
# 4. /MODULE.bazel
1111
# IMPORTANT: also update the SOVERSION!!
12-
version = "1.9.8",
12+
version = "1.9.9",
1313
compatibility_level = 1,
1414
)
1515

include/json/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
// 4. /MODULE.bazel
1111
// IMPORTANT: also update the SOVERSION!!
1212

13-
#define JSONCPP_VERSION_STRING "1.9.8"
13+
#define JSONCPP_VERSION_STRING "1.9.9"
1414
#define JSONCPP_VERSION_MAJOR 1
1515
#define JSONCPP_VERSION_MINOR 9
16-
#define JSONCPP_VERSION_PATCH 8
16+
#define JSONCPP_VERSION_PATCH 9
1717
#define JSONCPP_VERSION_HEXA \
1818
((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | \
1919
(JSONCPP_VERSION_PATCH << 8))

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ project(
1010
# 3. /CMakeLists.txt
1111
# 4. /MODULE.bazel
1212
# IMPORTANT: also update the SOVERSION!!
13-
version : '1.9.8',
13+
version : '1.9.9',
1414
default_options : [
1515
'buildtype=release',
1616
'cpp_std=c++11',

0 commit comments

Comments
 (0)