Skip to content

Commit de95c11

Browse files
chliangcdunn2001
authored andcommitted
fixed bug of version string 0.10.6->0.10.7 (open-source-parsers#891)
* fixed bug of version string 0.10.6->0.10.7 * fixed bug of CMakeLists.txt, 0.10.6->0.10.7 * fixed bug of CMakeLists.txt, 0.10.6->0.10.7
1 parent ba3fd41 commit de95c11

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ ENDMACRO()
6565
#SET( JSONCPP_VERSION_MAJOR X )
6666
#SET( JSONCPP_VERSION_MINOR Y )
6767
#SET( JSONCPP_VERSION_PATCH Z )
68-
SET( JSONCPP_VERSION 0.10.6 )
68+
SET( JSONCPP_VERSION 0.10.7 )
6969
jsoncpp_parse_version( ${JSONCPP_VERSION} JSONCPP_VERSION )
7070
#IF(NOT JSONCPP_VERSION_FOUND)
7171
# MESSAGE(FATAL_ERROR "Failed to parse version string properly. Expect X.Y.Z")

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 "0.10.6"
6+
# define JSONCPP_VERSION_STRING "0.10.7"
77
# define JSONCPP_VERSION_MAJOR 0
88
# define JSONCPP_VERSION_MINOR 10
9-
# define JSONCPP_VERSION_PATCH 6
9+
# define JSONCPP_VERSION_PATCH 7
1010
# define JSONCPP_VERSION_QUALIFIER
1111
# define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | (JSONCPP_VERSION_PATCH << 8))
1212

version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10.6
1+
0.10.7

0 commit comments

Comments
 (0)