@@ -4,9 +4,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44
55## [ Unreleased]
66
7+ ## 1.1.0 - 2016-08-25
8+
79### Added
810* Add GenericDocument ctor overload to specify JSON type (#369 )
911* Add FAQ (#372 , #373 , #374 , #376 )
12+ * Add forward declaration header ` fwd.h `
1013* Add @PlatformIO Library Registry manifest file (#400 )
1114* Implement assignment operator for BigInteger (#404 )
1215* Add comments support (#443 )
@@ -33,11 +36,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
3336* Add parse-by-parts example (#556 , #562 )
3437* Support parse number as string (#564 , #589 )
3538* Add kFormatSingleLineArray for PrettyWriter (#577 )
36- * Added optional support for trailing commas #584
39+ * Added optional support for trailing commas (#584 )
40+ * Added filterkey and filterkeydom examples (#615 )
41+ * Added npm docs (#639 )
42+ * Allow options for writing and parsing NaN/Infinity (#641 )
43+ * Add std::string overload to PrettyWriter::Key() when RAPIDJSON_HAS_STDSTRING is defined (#698 )
3744
3845### Fixed
39- * Fix gcc/clang/vc warnings (#350 , #394 , #397 , #444 , #447 , #473 , #515 , #582 , #589 , #595 )
40- * Fix documentation (#482 , #511 , #550 , #557 )
46+ * Fix gcc/clang/vc warnings (#350 , #394 , #397 , #444 , #447 , #473 , #515 , #582 , #589 , #595 , # 667 )
47+ * Fix documentation (#482 , #511 , #550 , #557 , # 614 , # 635 , # 660 )
4148* Fix emscripten alignment issue (#535 )
4249* Fix missing allocator to uses of AddMember in document (#365 )
4350* CMake will no longer complain that the minimum CMake version is not specified (#501 )
@@ -56,14 +63,23 @@ This project adheres to [Semantic Versioning](http://semver.org/).
5663* Fix a crash bug in regex (#605 )
5764* Fix schema "required" keyword cannot handle duplicated keys (#609 )
5865* Fix cmake CMP0054 warning (#612 )
66+ * Added missing include guards in istreamwrapper.h and ostreamwrapper.h (#634 )
67+ * Fix undefined behaviour (#646 )
68+ * Fix buffer overrun using PutN (#673 )
69+ * Fix rapidjson::value::Get< std::string > () may returns wrong data (#681 )
70+ * Add Flush() for all value types (#689 )
71+ * Handle malloc() fail in PoolAllocator (#691 )
72+ * Fix builds on x32 platform. #703
5973
6074### Changed
6175* Clarify problematic JSON license (#392 )
6276* Move Travis to container based infrastructure (#504 , #558 )
6377* Make whitespace array more compact (#513 )
6478* Optimize Writer::WriteString() with SIMD (#544 )
6579* x86-64 48-bit pointer optimization for GenericValue (#546 )
66-
80+ * Define RAPIDJSON_HAS_CXX11_RVALUE_REFS directly in clang (#617 )
81+ * Make GenericSchemaDocument constructor explicit (#674 )
82+ * Optimize FindMember when use std::string (#690 )
6783
6884## [ 1.0.2] - 2015-05-14
6985
@@ -135,7 +151,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
135151
136152## 0.1 - 2011-11-18
137153
138- [ Unreleased ] : https://github.com/miloyip/rapidjson/compare/v1.0.2...HEAD
154+ [ Unreleased ] : https://github.com/miloyip/rapidjson/compare/v1.1.0...HEAD
155+ [ 1.1.0 ] : https://github.com/miloyip/rapidjson/compare/v1.0.2...v1.1.0
139156[ 1.0.2 ] : https://github.com/miloyip/rapidjson/compare/v1.0.1...v1.0.2
140157[ 1.0.1 ] : https://github.com/miloyip/rapidjson/compare/v1.0.0...v1.0.1
141158[ 1.0.0 ] : https://github.com/miloyip/rapidjson/compare/v1.0-beta...v1.0.0
0 commit comments