Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
R
rapidjson
Project
Project
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
rapidjson
Commits
0e9fe888
Commit
0e9fe888
authored
May 14, 2015
by
Milo Yip
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
v1.0.2 release
parent
424abf1e
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
6 deletions
+17
-6
CHANGELOG.md
CHANGELOG.md
+12
-1
CMakeLists.txt
CMakeLists.txt
+1
-1
appveyor.yml
appveyor.yml
+1
-1
rapidjson.h
include/rapidjson/rapidjson.h
+1
-1
readme.md
readme.md
+1
-1
readme.zh-cn.md
readme.zh-cn.md
+1
-1
No files found.
CHANGELOG.md
View file @
0e9fe888
...
...
@@ -4,7 +4,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
## [1.0.2] - 2015-05-14
### Fixed
*
Include rapidjson.h for all internal/error headers.
*
Parsing some numbers incorrectly in full-precision mode (
`kFullPrecisionParseFlag`
) (#342)
*
Fix alignment of 64bit platforms (#328)
*
Fix MemoryPoolAllocator::Clear() to clear user-buffer (0691502573f1afd3341073dd24b12c3db20fbde4)
### Changed
*
CMakeLists for include as a thirdparty in projects (#334, #337)
*
Change Document::ParseStream() to use stack allocator for Reader (ffbe38614732af8e0b3abdc8b50071f386a4a685)
## [1.0.1] - 2015-04-25
...
...
@@ -60,6 +70,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## 0.1 - 2011-11-18
[
Unreleased
]:
https://github.com/miloyip/rapidjson/compare/v1.0.1...HEAD
[
Unreleased
]:
https://github.com/miloyip/rapidjson/compare/v1.0.2...HEAD
[
1.0.2
]:
https://github.com/miloyip/rapidjson/compare/v1.0.1...v1.0.2
[
1.0.1
]:
https://github.com/miloyip/rapidjson/compare/v1.0.0...v1.0.1
[
1.0.0
]:
https://github.com/miloyip/rapidjson/compare/v1.0-beta...v1.0.0
CMakeLists.txt
View file @
0e9fe888
...
...
@@ -5,7 +5,7 @@ PROJECT(RapidJSON CXX)
set
(
LIB_MAJOR_VERSION
"1"
)
set
(
LIB_MINOR_VERSION
"0"
)
set
(
LIB_PATCH_VERSION
"
1
"
)
set
(
LIB_PATCH_VERSION
"
2
"
)
set
(
LIB_VERSION_STRING
"
${
LIB_MAJOR_VERSION
}
.
${
LIB_MINOR_VERSION
}
.
${
LIB_PATCH_VERSION
}
"
)
# compile in release with debug info mode by default
...
...
appveyor.yml
View file @
0e9fe888
version
:
1.0.
1
.{build}
version
:
1.0.
2
.{build}
configuration
:
-
Debug
...
...
include/rapidjson/rapidjson.h
View file @
0e9fe888
...
...
@@ -69,7 +69,7 @@
*/
#define RAPIDJSON_MAJOR_VERSION 1
#define RAPIDJSON_MINOR_VERSION 0
#define RAPIDJSON_PATCH_VERSION
1
#define RAPIDJSON_PATCH_VERSION
2
#define RAPIDJSON_VERSION_STRING \
RAPIDJSON_STRINGIFY
(
RAPIDJSON_MAJOR_VERSION
.
RAPIDJSON_MINOR_VERSION
.
RAPIDJSON_PATCH_VERSION
)
...
...
readme.md
View file @
0e9fe888
![](
doc/logo/rapidjson.png
)
![](
https://img.shields.io/badge/release-v1.0.
1
-blue.png
)
![](
https://img.shields.io/badge/release-v1.0.
2
-blue.png
)
## A fast JSON parser/generator for C++ with both SAX/DOM style API
...
...
readme.zh-cn.md
View file @
0e9fe888
![](
doc/logo/rapidjson.png
)
![](
https://img.shields.io/badge/release-v1.0.
1
-blue.png
)
![](
https://img.shields.io/badge/release-v1.0.
2
-blue.png
)
## 高效的C++ JSON解析/生成器,提供SAX及DOM风格API
...
...
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