Update CHANGELOG

This commit is contained in:
Masaaki Goshima 2021-06-26 11:15:39 +09:00
parent 3829400241
commit 595e20a25e
1 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,19 @@
# v0.7.2 - 2021/06/26
### Fix decoder
* Add decoder for func type to fix decoding of nil function value ( #257 )
* Fix stream decoding of []byte type ( #258 )
### Performance
* Improve decoding performance of map[string]interface{} type ( use `mapassign_faststr` ) ( #256 )
* Improve encoding performance of empty interface type ( remove recursive calling of `vm.Run` ) ( #259 )
### Benchmark
* Add bytedance/sonic as benchmark target ( #254 )
# v0.7.1 - 2021/06/18 # v0.7.1 - 2021/06/18
### Fix decoder ### Fix decoder