forked from mirror/go-json
Update CHANGELOG
This commit is contained in:
parent
3d17de681d
commit
6562473b1e
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -1,3 +1,21 @@
|
||||||
|
# v0.6.0 - 2021/06/01
|
||||||
|
|
||||||
|
### Support Colorize option for encoding (#233)
|
||||||
|
|
||||||
|
```go
|
||||||
|
b, err := json.MarshalWithOption(v, json.Colorize(json.DefaultColorScheme))
|
||||||
|
if err != nil {
|
||||||
|
...
|
||||||
|
}
|
||||||
|
fmt.Println(string(b)) // print colored json
|
||||||
|
```
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
* Fix opcode layout - Adjust memory layout of the opcode to 128 bytes in a 64-bit environment ( #230 )
|
||||||
|
* Refactor encode option ( #231 )
|
||||||
|
* Refactor escape string ( #232 )
|
||||||
|
|
||||||
# v0.5.1 - 2021/5/20
|
# v0.5.1 - 2021/5/20
|
||||||
|
|
||||||
### Optimization
|
### Optimization
|
||||||
|
|
|
@ -13,17 +13,12 @@ Fast JSON encoder/decoder compatible with encoding/json for Go
|
||||||
```
|
```
|
||||||
* version ( expected release date )
|
* version ( expected release date )
|
||||||
|
|
||||||
* v0.5.0
|
* v0.6.0
|
||||||
|
|
|
||||||
| refactor all sources for maintainability and improve performance
|
|
||||||
|
|
|
||||||
v
|
|
||||||
* v0.6.0 ( 2021/05 Mid )
|
|
||||||
|
|
|
|
||||||
| while maintaining compatibility with encoding/json, we will add convenient APIs
|
| while maintaining compatibility with encoding/json, we will add convenient APIs
|
||||||
|
|
|
|
||||||
v
|
v
|
||||||
* v1.0.0 ( 2021/06 Mid )
|
* v1.0.0 ( 2021/06 )
|
||||||
```
|
```
|
||||||
|
|
||||||
We are accepting requests for features that will be implemented between v0.6.0 and v.1.0.0.
|
We are accepting requests for features that will be implemented between v0.6.0 and v.1.0.0.
|
||||||
|
|
Loading…
Reference in New Issue