Skip to content

Commit 6562473

Browse files
committed
Update CHANGELOG
1 parent 3d17de6 commit 6562473

File tree

2 files changed

+20
-7
lines changed

2 files changed

+20
-7
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# v0.6.0 - 2021/06/01
2+
3+
### Support Colorize option for encoding (#233)
4+
5+
```go
6+
b, err := json.MarshalWithOption(v, json.Colorize(json.DefaultColorScheme))
7+
if err != nil {
8+
...
9+
}
10+
fmt.Println(string(b)) // print colored json
11+
```
12+
13+
### Refactor
14+
15+
* Fix opcode layout - Adjust memory layout of the opcode to 128 bytes in a 64-bit environment ( #230 )
16+
* Refactor encode option ( #231 )
17+
* Refactor escape string ( #232 )
18+
119
# v0.5.1 - 2021/5/20
220

321
### Optimization

README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,12 @@ Fast JSON encoder/decoder compatible with encoding/json for Go
1313
```
1414
* version ( expected release date )
1515
16-
* v0.5.0
17-
|
18-
| refactor all sources for maintainability and improve performance
19-
|
20-
v
21-
* v0.6.0 ( 2021/05 Mid )
16+
* v0.6.0
2217
|
2318
| while maintaining compatibility with encoding/json, we will add convenient APIs
2419
|
2520
v
26-
* v1.0.0 ( 2021/06 Mid )
21+
* v1.0.0 ( 2021/06 )
2722
```
2823

2924
We are accepting requests for features that will be implemented between v0.6.0 and v.1.0.0.

0 commit comments

Comments
 (0)