File tree Expand file tree Collapse file tree 2 files changed +20
-7
lines changed Expand file tree Collapse file tree 2 files changed +20
-7
lines changed Original file line number Diff line number Diff line change
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
+
1
19
# v0.5.1 - 2021/5/20
2
20
3
21
### Optimization
Original file line number Diff line number Diff line change @@ -13,17 +13,12 @@ Fast JSON encoder/decoder compatible with encoding/json for Go
13
13
```
14
14
* version ( expected release date )
15
15
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
22
17
|
23
18
| while maintaining compatibility with encoding/json, we will add convenient APIs
24
19
|
25
20
v
26
- * v1.0.0 ( 2021/06 Mid )
21
+ * v1.0.0 ( 2021/06 )
27
22
```
28
23
29
24
We are accepting requests for features that will be implemented between v0.6.0 and v.1.0.0.
You can’t perform that action at this time.
0 commit comments