Skip to content

Commit

Permalink
Releasing 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ibireme committed May 25, 2021
1 parent 8b682d2 commit 1f7dc19
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
# Changelog
All notable changes to this project will be documented in this file.

## [0.3.0] - 2021-05-25
### Added
- Add `JSON Pointer` support.
- Add CMake install target.

### Changed
- Improve performance for some arch which doesn't support unaligned memory access.

### Fixed
- Fix some compiler warning for GCC and Clang.
- Fix MSVC build error on UWP (uninitialized local variable).
- Fix stream file reading error on some platform.

## [0.2.0] - 2020-12-12
### Added
- Add swift package manager support.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,12 +213,12 @@ if (err.code) {
yyjson_mut_doc_free(doc);
```
## Documentation
# Documentation
* [Building](https://github.com/ibireme/yyjson/blob/master/doc/Building.md)
* [API and sample code](https://github.com/ibireme/yyjson/blob/master/doc/API.md)
* [Data structure](https://github.com/ibireme/yyjson/blob/master/doc/DataStructure.md)
## TODO
# TODO
* [x] Add documentation page.
* [x] Add GitHub workflow for CI and codecov.
* [x] Add more tests: valgrind, sanitizer.
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 2
#define YYJSON_VERSION_MINOR 3
#define YYJSON_VERSION_PATCH 0
#define YYJSON_VERSION_HEX 0x000200
#define YYJSON_VERSION_STRING "0.2.0"
#define YYJSON_VERSION_HEX 0x000300
#define YYJSON_VERSION_STRING "0.3.0"



Expand Down

0 comments on commit 1f7dc19

Please sign in to comment.