Skip to content

Commit 359f98d

Browse files
committed
Merge branch 'release/3.2.0' into develop
2 parents 7608a64 + 9f3857e commit 359f98d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+244
-65
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ cmake_minimum_required(VERSION 3.8)
44
## PROJECT
55
## name and version
66
##
7-
project(nlohmann_json VERSION 3.1.2 LANGUAGES CXX)
7+
project(nlohmann_json VERSION 3.2.0 LANGUAGES CXX)
88

99
##
1010
## INCLUDE

ChangeLog.md

Lines changed: 180 additions & 1 deletion
Large diffs are not rendered by default.

doc/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#---------------------------------------------------------------------------
66
DOXYFILE_ENCODING = UTF-8
77
PROJECT_NAME = "JSON for Modern C++"
8-
PROJECT_NUMBER = 3.1.2
8+
PROJECT_NUMBER = 3.2.0
99
PROJECT_BRIEF =
1010
PROJECT_LOGO =
1111
OUTPUT_DIRECTORY = .

doc/examples/README.link

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<a target="_blank" href="https://wandbox.org/permlink/7HlactSAaECZWYmb"><b>online</b></a>
1+
<a target="_blank" href="https://wandbox.org/permlink/VexEaSCbbvOOXsPt"><b>online</b></a>

doc/examples/meta.output

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"url": "https://github.com/nlohmann/json",
1111
"version": {
1212
"major": 3,
13-
"minor": 1,
14-
"patch": 2,
15-
"string": "3.1.2"
13+
"minor": 2,
14+
"patch": 0,
15+
"string": "3.2.0"
1616
}
1717
}

doc/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,4 +306,4 @@ Note that this table only lists those exceptions thrown due to the type. For ins
306306
@author [Niels Lohmann](http://nlohmann.me)
307307
@see https://github.com/nlohmann/json to download the source code
308308

309-
@version 3.1.2
309+
@version 3.2.0

include/nlohmann/json.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
__ _____ _____ _____
33
__| | __| | | | JSON for Modern C++
4-
| | |__ | | | | | | version 3.1.2
4+
| | |__ | | | | | | version 3.2.0
55
|_____|_____|_____|_|___| https://github.com/nlohmann/json
66
77
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
@@ -31,8 +31,8 @@ SOFTWARE.
3131
#define NLOHMANN_JSON_HPP
3232

3333
#define NLOHMANN_JSON_VERSION_MAJOR 3
34-
#define NLOHMANN_JSON_VERSION_MINOR 1
35-
#define NLOHMANN_JSON_VERSION_PATCH 2
34+
#define NLOHMANN_JSON_VERSION_MINOR 2
35+
#define NLOHMANN_JSON_VERSION_PATCH 0
3636

3737
#include <algorithm> // all_of, find, for_each
3838
#include <cassert> // assert
@@ -947,7 +947,7 @@ class basic_json
947947
object = nullptr; // silence warning, see #821
948948
if (JSON_UNLIKELY(t == value_t::null))
949949
{
950-
JSON_THROW(other_error::create(500, "961c151d2e87f2686a955a9be24d316f1362bf21 3.1.2")); // LCOV_EXCL_LINE
950+
JSON_THROW(other_error::create(500, "961c151d2e87f2686a955a9be24d316f1362bf21 3.2.0")); // LCOV_EXCL_LINE
951951
}
952952
break;
953953
}

single_include/nlohmann/json.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
__ _____ _____ _____
33
__| | __| | | | JSON for Modern C++
4-
| | |__ | | | | | | version 3.1.2
4+
| | |__ | | | | | | version 3.2.0
55
|_____|_____|_____|_|___| https://github.com/nlohmann/json
66

77
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
@@ -31,8 +31,8 @@ SOFTWARE.
3131
#define NLOHMANN_JSON_HPP
3232

3333
#define NLOHMANN_JSON_VERSION_MAJOR 3
34-
#define NLOHMANN_JSON_VERSION_MINOR 1
35-
#define NLOHMANN_JSON_VERSION_PATCH 2
34+
#define NLOHMANN_JSON_VERSION_MINOR 2
35+
#define NLOHMANN_JSON_VERSION_PATCH 0
3636

3737
#include <algorithm> // all_of, find, for_each
3838
#include <cassert> // assert
@@ -12053,7 +12053,7 @@ class basic_json
1205312053
object = nullptr; // silence warning, see #821
1205412054
if (JSON_UNLIKELY(t == value_t::null))
1205512055
{
12056-
JSON_THROW(other_error::create(500, "961c151d2e87f2686a955a9be24d316f1362bf21 3.1.2")); // LCOV_EXCL_LINE
12056+
JSON_THROW(other_error::create(500, "961c151d2e87f2686a955a9be24d316f1362bf21 3.2.0")); // LCOV_EXCL_LINE
1205712057
}
1205812058
break;
1205912059
}

test/src/fuzzer-driver_afl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
__ _____ _____ _____
33
__| | __| | | | JSON for Modern C++ (fuzz test support)
4-
| | |__ | | | | | | version 3.1.2
4+
| | |__ | | | | | | version 3.2.0
55
|_____|_____|_____|_|___| https://github.com/nlohmann/json
66
77
This file implements a driver for American Fuzzy Lop (afl-fuzz). It relies on

test/src/fuzzer-parse_cbor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
__ _____ _____ _____
33
__| | __| | | | JSON for Modern C++ (fuzz test support)
4-
| | |__ | | | | | | version 3.1.2
4+
| | |__ | | | | | | version 3.2.0
55
|_____|_____|_____|_|___| https://github.com/nlohmann/json
66
77
This file implements a parser test suitable for fuzz testing. Given a byte

0 commit comments

Comments
 (0)