Skip to content

Commit c98e1d8

Browse files
committed
Bump to soversion=19, 1.8.3
Note that cmake is deprecated, but we keep it in-sync manually for now.
1 parent d830c0a commit c98e1d8

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ ENDMACRO()
5959
#SET( JSONCPP_VERSION_MAJOR X )
6060
#SET( JSONCPP_VERSION_MINOR Y )
6161
#SET( JSONCPP_VERSION_PATCH Z )
62-
SET( JSONCPP_VERSION 1.8.2 )
62+
SET( JSONCPP_VERSION 1.8.3 )
6363
jsoncpp_parse_version( ${JSONCPP_VERSION} JSONCPP_VERSION )
6464
#IF(NOT JSONCPP_VERSION_FOUND)
6565
# MESSAGE(FATAL_ERROR "Failed to parse version string properly. Expect X.Y.Z")
6666
#ENDIF(NOT JSONCPP_VERSION_FOUND)
67-
SET( JSONCPP_SOVERSION 11 )
67+
SET( JSONCPP_SOVERSION 19 )
6868
SET( JSONCPP_USE_SECURE_MEMORY "0" CACHE STRING "-D...=1 to use memory-wiping allocator for STL" )
6969

7070
MESSAGE(STATUS "JsonCpp Version: ${JSONCPP_VERSION_MAJOR}.${JSONCPP_VERSION_MINOR}.${JSONCPP_VERSION_PATCH}")

include/json/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
#ifndef JSON_VERSION_H_INCLUDED
44
# define JSON_VERSION_H_INCLUDED
55

6-
# define JSONCPP_VERSION_STRING "1.8.2"
6+
# define JSONCPP_VERSION_STRING "1.8.3"
77
# define JSONCPP_VERSION_MAJOR 1
88
# define JSONCPP_VERSION_MINOR 8
9-
# define JSONCPP_VERSION_PATCH 2
9+
# define JSONCPP_VERSION_PATCH 3
1010
# define JSONCPP_VERSION_QUALIFIER
1111
# define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | (JSONCPP_VERSION_PATCH << 8))
1212

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.2',
4+
version : '1.8.3',
55
default_options : [
66
'buildtype=release',
77
'warning_level=1'],
@@ -52,7 +52,7 @@ jsoncpp_lib = library(
5252
'src/lib_json/json_reader.cpp',
5353
'src/lib_json/json_value.cpp',
5454
'src/lib_json/json_writer.cpp'],
55-
soversion : 18,
55+
soversion : 19,
5656
install : true,
5757
include_directories : jsoncpp_include_directories)
5858

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.2
1+
1.8.3

0 commit comments

Comments
 (0)