🔖 set version to 3.11.0

This commit is contained in:
Niels Lohmann
2022-07-31 23:19:06 +02:00
parent 9aafcbe965
commit ce0e13ccea
153 changed files with 437 additions and 252 deletions
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 MiB

After

Width:  |  Height:  |  Size: 1.5 MiB

+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "JSON for Modern C++",
"version": "3.10.5",
"version": "3.11.0",
"archive": "JSON_for_Modern_C++.tgz",
"author": {
"name": "Niels Lohmann",
@@ -2,7 +2,7 @@
{"one":1,"three":3,"two":2}
{"one":1.2,"three":3.4,"two":2.3}
{"one":true,"three":false,"two":true}
{"one":true,"three":false,"two":true}
{"one":true,"three":true,"two":true}
["one","two",3,4.5,false]
[1,2,3,4]
+2 -2
View File
@@ -2,6 +2,6 @@
1
1
1
256204778801521550
1152921504606846975
115292150460684697
576460752303423487
1
+5 -5
View File
@@ -1,8 +1,8 @@
{
"compiler": {
"c++": "201103",
"family": "clang",
"version": "13.0.0 (clang-1300.0.29.30)"
"family": "gcc",
"version": "11.3.0"
},
"copyright": "(C) 2013-2022 Niels Lohmann",
"name": "JSON for Modern C++",
@@ -10,8 +10,8 @@
"url": "https://github.com/nlohmann/json",
"version": {
"major": 3,
"minor": 10,
"patch": 5,
"string": "3.10.5"
"minor": 11,
"patch": 0,
"string": "3.11.0"
}
}
+1 -1
View File
@@ -1 +1 @@
JSON for Modern C++ version 3.10.5
JSON for Modern C++ version 3.11.0
+2 -2
View File
@@ -2,7 +2,7 @@ hash(null) = 2654435769
hash(false) = 2654436030
hash(0) = 2654436095
hash(0U) = 2654436156
hash("") = 11160318156688833227
hash("") = 6142509191626859748
hash({}) = 2654435832
hash([]) = 2654435899
hash({"hello": "world"}) = 3701319991624763853
hash({"hello": "world"}) = 4469488738203676328
BIN
View File
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 MiB

After

Width:  |  Height:  |  Size: 1.6 MiB

+4 -4
View File
@@ -18,7 +18,7 @@ and use the namespaced imported target from the generated package configuration:
cmake_minimum_required(VERSION 3.1)
project(ExampleProject LANGUAGES CXX)
find_package(nlohmann_json 3.10.5 REQUIRED)
find_package(nlohmann_json 3.11.0 REQUIRED)
add_executable(example example.cpp)
target_link_libraries(example PRIVATE nlohmann_json::nlohmann_json)
@@ -77,7 +77,7 @@ to the following.
```cmake title="thirdparty/CMakeLists.txt"
if(EXAMPLE_USE_EXTERNAL_JSON)
find_package(nlohmann_json 3.10.5 REQUIRED)
find_package(nlohmann_json 3.11.0 REQUIRED)
else()
set(JSON_BuildTests OFF CACHE INTERNAL "")
add_subdirectory(nlohmann_json)
@@ -100,7 +100,7 @@ automatically download a release as a dependency at configure type.
include(FetchContent)
FetchContent_Declare(json URL https://github.com/nlohmann/json/releases/download/v3.10.5/json.tar.xz)
FetchContent_Declare(json URL https://github.com/nlohmann/json/releases/download/v3.11.0/json.tar.xz)
FetchContent_MakeAvailable(json)
add_executable(example example.cpp)
@@ -115,7 +115,7 @@ automatically download a release as a dependency at configure type.
```cmake
FetchContent_Declare(json
GIT_REPOSITORY https://github.com/nlohmann/json
GIT_TAG v3.10.5
GIT_TAG v3.11.0
)
```