Skip to content

Commit

Permalink
docs: update CHANGELOG for version 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wI2L committed Oct 22, 2019
1 parent 9a55ff8 commit ee17c0b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project are documented in this file.

**THIS LIBRARY IS STILL IN ALPHA AND THERE ARE NO GUARANTEES REGARDING API STABILITY YET**

## [v0.4.1] - 2019-10-23
- Fix unsafe misuses reported by go vet and the new `-d=checkptr` cmd/compile flag introduced in the Go1.14 development tree by Matthew Dempsky. The issues were mostly related to invalid arithmetic operations and dereferences.
- Fix map key types precedence order during marshaling. Keys of any string type are used directly instead of the `MarshalText` method, if the types also implement the `encoding.TextMarshaler` interface.

## [v0.4.0] - 2019-10-18
- Add the `Marshaler` interface. Types that implements it can write a JSON representation of themselves to a `Writer` directly, to avoid having to allocate a buffer as they would usually do when using the `json.Marshaler` interface.

Expand Down Expand Up @@ -32,6 +36,7 @@ All notable changes to this project are documented in this file.
## [v0.1.0] - 2019-08-30
Initial realease.

[v0.4.1]: https://github.com/wI2L/jettison/compare/v0.4.0...v0.4.1
[v0.4.0]: https://github.com/wI2L/jettison/compare/v0.3.1...v0.4.0
[v0.3.1]: https://github.com/wI2L/jettison/compare/v0.3.0...v0.3.1
[v0.3.0]: https://github.com/wI2L/jettison/compare/v0.2.1...v0.3.0
Expand Down

0 comments on commit ee17c0b

Please sign in to comment.