Skip to content

Commit 53c3eef

Browse files
committed
Merge branch 'release/3.7.0' into develop
2 parents 66d63ab + d275d05 commit 53c3eef

Some content is hidden

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

59 files changed

+217
-68
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.6.1 LANGUAGES CXX)
7+
project(nlohmann_json VERSION 3.7.0 LANGUAGES CXX)
88

99
##
1010
## INCLUDE

ChangeLog.md

Lines changed: 145 additions & 1 deletion

README.md

Lines changed: 5 additions & 0 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.6.1
8+
PROJECT_NUMBER = 3.7.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/uAyi8CvcGwzGQ406"><b>online</b></a>
1+
<a target="_blank" href="https://wandbox.org/permlink/tD2mLxlcQZLrIvFW"><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": 6,
14-
"patch": 1,
15-
"string": "3.6.1"
13+
"minor": 7,
14+
"patch": 0,
15+
"string": "3.7.0"
1616
}
1717
}

doc/index.md

Lines changed: 1 addition & 1 deletion

doc/json.gif

19 Bytes

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.6.1
4+
| | |__ | | | | | | version 3.7.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 INCLUDE_NLOHMANN_JSON_HPP_
3232

3333
#define NLOHMANN_JSON_VERSION_MAJOR 3
34-
#define NLOHMANN_JSON_VERSION_MINOR 6
35-
#define NLOHMANN_JSON_VERSION_PATCH 1
34+
#define NLOHMANN_JSON_VERSION_MINOR 7
35+
#define NLOHMANN_JSON_VERSION_PATCH 0
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.6.1")); // LCOV_EXCL_LINE
956+
JSON_THROW(other_error::create(500, "961c151d2e87f2686a955a9be24d316f1362bf21 3.7.0")); // 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.6.1',
3+
version : '3.7.0',
44
license : 'MIT',
55
)
66

0 commit comments

Comments
 (0)