Skip to content

Commit d98bf02

Browse files
committed
Merge branch 'release/3.7.1' into develop
2 parents 0f6a58e + aacdc6b commit d98bf02

Some content is hidden

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

58 files changed

+196
-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.1)
44
## PROJECT
55
## name and version
66
##
7-
project(nlohmann_json VERSION 3.7.0 LANGUAGES CXX)
7+
project(nlohmann_json VERSION 3.7.1 LANGUAGES CXX)
88

99
##
1010
## INCLUDE

ChangeLog.md

Lines changed: 133 additions & 2 deletions

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.7.0
8+
PROJECT_NUMBER = 3.7.1
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/tD2mLxlcQZLrIvFW"><b>online</b></a>
1+
<a target="_blank" href="https://wandbox.org/permlink/aMsX89i37S5EFFt2"><b>online</b></a>

doc/examples/meta.output

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"version": {
1212
"major": 3,
1313
"minor": 7,
14-
"patch": 0,
15-
"string": "3.7.0"
14+
"patch": 1,
15+
"string": "3.7.1"
1616
}
1717
}

doc/index.md

Lines changed: 1 addition & 1 deletion

doc/json.gif

-16.4 KB

include/nlohmann/json.hpp

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

3333
#define NLOHMANN_JSON_VERSION_MAJOR 3
3434
#define NLOHMANN_JSON_VERSION_MINOR 7
35-
#define NLOHMANN_JSON_VERSION_PATCH 0
35+
#define NLOHMANN_JSON_VERSION_PATCH 1
3636

3737
#include <algorithm> // all_of, find, for_each
3838
#include <cassert> // assert
@@ -953,7 +953,7 @@ class basic_json
953953
object = nullptr; // silence warning, see #821
954954
if (JSON_HEDLEY_UNLIKELY(t == value_t::null))
955955
{
956-
JSON_THROW(other_error::create(500, "961c151d2e87f2686a955a9be24d316f1362bf21 3.7.0")); // LCOV_EXCL_LINE
956+
JSON_THROW(other_error::create(500, "961c151d2e87f2686a955a9be24d316f1362bf21 3.7.1")); // LCOV_EXCL_LINE
957957
}
958958
break;
959959
}

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project('nlohmann_json',
22
'cpp',
3-
version : '3.7.0',
3+
version : '3.7.1',
44
license : 'MIT',
55
)
66

single_include/nlohmann/json.hpp

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

77
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
@@ -32,7 +32,7 @@ SOFTWARE.
3232

3333
#define NLOHMANN_JSON_VERSION_MAJOR 3
3434
#define NLOHMANN_JSON_VERSION_MINOR 7
35-
#define NLOHMANN_JSON_VERSION_PATCH 0
35+
#define NLOHMANN_JSON_VERSION_PATCH 1
3636

3737
#include <algorithm> // all_of, find, for_each
3838
#include <cassert> // assert
@@ -15496,7 +15496,7 @@ class basic_json
1549615496
object = nullptr; // silence warning, see #821
1549715497
if (JSON_HEDLEY_UNLIKELY(t == value_t::null))
1549815498
{
15499-
JSON_THROW(other_error::create(500, "961c151d2e87f2686a955a9be24d316f1362bf21 3.7.0")); // LCOV_EXCL_LINE
15499+
JSON_THROW(other_error::create(500, "961c151d2e87f2686a955a9be24d316f1362bf21 3.7.1")); // LCOV_EXCL_LINE
1550015500
}
1550115501
break;
1550215502
}

0 commit comments

Comments
 (0)