diff --git a/CHANGELOG.md b/CHANGELOG.md index 68c5518..1fc6489 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.2.0] - 2020-12-12 +### Added +- Add swift package manager support. + +### Changed +- Improve JSON reader performance for gcc. +- Improve double number reader performance with a fast path. +- Rewrite double number writer with Schubfach algrithm: #4. +- Strict UTF-8 validation for JSON reader. + +### Removed +- Remove `YYJSON_READ_FASTFP` flag. + +### Fixed +- Fix a compile error for old version gcc on linux: #7. + ## [0.1.0] - 2020-10-26 ### Added - Initial release. diff --git a/src/yyjson.h b/src/yyjson.h index 6449531..e4cb704 100644 --- a/src/yyjson.h +++ b/src/yyjson.h @@ -28,10 +28,10 @@ *============================================================================*/ #define YYJSON_VERSION_MAJOR 0 -#define YYJSON_VERSION_MINOR 1 +#define YYJSON_VERSION_MINOR 2 #define YYJSON_VERSION_PATCH 0 -#define YYJSON_VERSION_HEX 0x000100 -#define YYJSON_VERSION_STRING "0.1.0" +#define YYJSON_VERSION_HEX 0x000200 +#define YYJSON_VERSION_STRING "0.2.0"