Skip to content

Commit

Permalink
Releasing 0.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
ibireme committed Dec 13, 2020
1 parent 8e7fa5d commit 54e3aa3
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
6 changes: 3 additions & 3 deletions src/yyjson.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"



Expand Down

0 comments on commit 54e3aa3

Please sign in to comment.