Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
json
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
json
Commits
a05df038
Commit
a05df038
authored
Jul 31, 2016
by
Niels
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prepared release
parent
9e51c904
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
15 additions
and
14 deletions
+15
-14
CMakeLists.txt
CMakeLists.txt
+1
-1
ChangeLog.md
ChangeLog.md
+2
-3
Makefile
Makefile
+3
-1
README.md
README.md
+1
-1
Doxyfile
doc/Doxyfile
+1
-1
README.link
doc/examples/README.link
+2
-2
index.md
doc/index.md
+1
-1
json.hpp
src/json.hpp
+1
-1
json.hpp.re2c
src/json.hpp.re2c
+1
-1
fuzz.cpp
test/src/fuzz.cpp
+1
-1
unit.cpp
test/src/unit.cpp
+1
-1
No files found.
CMakeLists.txt
View file @
a05df038
cmake_minimum_required
(
VERSION 3.0
)
# define the project
project
(
nlohmann_json VERSION 2.0.
0
LANGUAGES CXX
)
project
(
nlohmann_json VERSION 2.0.
2
LANGUAGES CXX
)
enable_testing
()
...
...
ChangeLog.md
View file @
a05df038
# Change Log
All notable changes to this project will be documented in this file. This project adheres to
[
Semantic Versioning
](
http://semver.org/
)
.
## [Unreleased](https://github.com/nlohmann/json/tree/HEAD)
[
Full Changelog
](
https://github.com/nlohmann/json/compare/v2.0.1...HEAD
)
## [v2.0.2](https://github.com/nlohmann/json/releases/tag/v2.0.2) (2016-07-30)
[
Full Changelog
](
https://github.com/nlohmann/json/compare/v2.0.1...v2.0.2
)
-
value
\(\)
does not work with
\_
json
\_
pointer types
[
\#283
](
https://github.com/nlohmann/json/issues/283
)
-
Easy serialization of classes
[
\#280
](
https://github.com/nlohmann/json/issues/280
)
...
...
Makefile
View file @
a05df038
...
...
@@ -95,7 +95,9 @@ json_benchmarks: benchmarks/benchmarks.cpp benchmarks/benchpress.hpp benchmarks/
# changelog
##########################################################################
NEXT_VERSION
?=
"unreleased"
ChangeLog.md
:
github_changelog_generator
-o
ChangeLog.md
--simple-list
--release-url
https://github.com/nlohmann/json/releases/tag/%s
github_changelog_generator
-o
ChangeLog.md
--simple-list
--release-url
https://github.com/nlohmann/json/releases/tag/%s
--future-release
$(NEXT_VERSION)
gsed
-i
's|https://github.com/nlohmann/json/releases/tag/HEAD|https://github.com/nlohmann/json/tree/HEAD|'
ChangeLog.md
gsed
-i
'2i All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).'
ChangeLog.md
README.md
View file @
a05df038
...
...
@@ -4,7 +4,7 @@
[

](https://ci.appveyor.com/project/nlohmann/json)
[

](https://coveralls.io/r/nlohmann/json)
[

](https://scan.coverity.com/projects/nlohmann-json)
[

](http://melpon.org/wandbox/permlink/
wuiuqYiYqRTdI3rG
)
[

](http://melpon.org/wandbox/permlink/
p5o4znPnGHJpDVqN
)
[

](http://nlohmann.github.io/json)
[

](https://raw.githubusercontent.com/nlohmann/json/master/LICENSE.MIT)
[

](https://github.com/nlohmann/json/releases)
...
...
doc/Doxyfile
View file @
a05df038
...
...
@@ -5,7 +5,7 @@
#---------------------------------------------------------------------------
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "JSON for Modern C++"
PROJECT_NUMBER = 2.0.
0
PROJECT_NUMBER = 2.0.
2
PROJECT_BRIEF =
PROJECT_LOGO =
OUTPUT_DIRECTORY = .
...
...
doc/examples/README.link
View file @
a05df038
<a target="_blank" href="http://melpon.org/wandbox/permlink/k5KRwVJ42VggxxzX"><b>online</b></a>
\ No newline at end of file
<a target="_blank" href="http://melpon.org/wandbox/permlink/p5o4znPnGHJpDVqN"><b>online</b></a>
\ No newline at end of file
doc/index.md
View file @
a05df038
...
...
@@ -268,4 +268,4 @@ The container functions known from STL have been extended to support the differe
@author
[
Niels Lohmann
](
http://nlohmann.me
)
@see https://github.com/nlohmann/json to download the source code
@version 2.0.
0
@version 2.0.
2
src/json.hpp
View file @
a05df038
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++
| | |__ | | | | | | version 2.0.
1
| | |__ | | | | | | version 2.0.
2
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
src/json.hpp.re2c
View file @
a05df038
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++
| | |__ | | | | | | version 2.0.
1
| | |__ | | | | | | version 2.0.
2
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
test/src/fuzz.cpp
View file @
a05df038
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (fuzz test support)
| | |__ | | | | | | version 2.0.
0
| | |__ | | | | | | version 2.0.
2
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Run "make fuzz_testing" and follow the instructions.
...
...
test/src/unit.cpp
View file @
a05df038
/*
__ _____ _____ _____
__| | __| | | | JSON for Modern C++ (test suite)
| | |__ | | | | | | version 2.0.
1
| | |__ | | | | | | version 2.0.
2
|_____|_____|_____|_|___| https://github.com/nlohmann/json
Licensed under the MIT License <http://opensource.org/licenses/MIT>.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment