Skip to content

Commit 24682e3

Browse files
committed
1.6.2 <- 1.6.1
Fix UTF-8 for old (deprecated) Writers. * Do not truncate at embedded zeroes.
1 parent c2b988e commit 24682e3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ ENDMACRO(jsoncpp_parse_version)
6060
#SET( JSONCPP_VERSION_MAJOR X )
6161
#SET( JSONCPP_VERSION_MINOR Y )
6262
#SET( JSONCPP_VERSION_PATCH Z )
63-
SET( JSONCPP_VERSION 1.6.1 )
63+
SET( JSONCPP_VERSION 1.6.2 )
6464
jsoncpp_parse_version( ${JSONCPP_VERSION} JSONCPP_VERSION )
6565
#IF(NOT JSONCPP_VERSION_FOUND)
6666
# MESSAGE(FATAL_ERROR "Failed to parse version string properly. Expect X.Y.Z")

Diff for: include/json/version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
#ifndef JSON_VERSION_H_INCLUDED
55
# define JSON_VERSION_H_INCLUDED
66

7-
# define JSONCPP_VERSION_STRING "1.6.1"
7+
# define JSONCPP_VERSION_STRING "1.6.2"
88
# define JSONCPP_VERSION_MAJOR 1
99
# define JSONCPP_VERSION_MINOR 6
10-
# define JSONCPP_VERSION_PATCH 1
10+
# define JSONCPP_VERSION_PATCH 2
1111
# define JSONCPP_VERSION_QUALIFIER
1212
# define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | (JSONCPP_VERSION_PATCH << 8))
1313

Diff for: version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.6.1
1+
1.6.2

0 commit comments

Comments
 (0)