Skip to content

Commit ddabf50

Browse files
committed
1.8.4; soversion=20
1 parent 63ab03c commit ddabf50

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ 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.3 )
62+
SET( JSONCPP_VERSION 1.8.4 )
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")

include/json/version.h

+2-2
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.3"
6+
# define JSONCPP_VERSION_STRING "1.8.4"
77
# define JSONCPP_VERSION_MAJOR 1
88
# define JSONCPP_VERSION_MINOR 8
9-
# define JSONCPP_VERSION_PATCH 3
9+
# define JSONCPP_VERSION_PATCH 4
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'jsoncpp',
33
'cpp',
4-
version : '1.8.3',
4+
version : '1.8.4',
55
default_options : [
66
'buildtype=release',
77
'warning_level=1'],
@@ -53,7 +53,7 @@ jsoncpp_lib = library(
5353
'src/lib_json/json_reader.cpp',
5454
'src/lib_json/json_value.cpp',
5555
'src/lib_json/json_writer.cpp'],
56-
soversion : 19,
56+
soversion : 20,
5757
install : true,
5858
include_directories : jsoncpp_include_directories)
5959

version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.3
1+
1.8.4

0 commit comments

Comments
 (0)