Releases: kelindar/binary
Releases · kelindar/binary
v1.0.19
v1.0.18
What's Changed
- Add TimeCounters type by @kelindar in #17
- Fix #15 by @Jason5Lee in #16
- support codecs from js client by @malumar in #13
New Contributors
- @Jason5Lee made their first contribution in #16
- @malumar made their first contribution in #13
Full Changelog: v1.0.17...v1.0.18
v1.0.17
v1.0.16
This release contains a refactoring of internal readers used for unmarshaling by the decoder.
- It speeds up varint decoding slightly by providing a methods
ReadUvarint()
andReadVarint()
directly in the reader. - When using a plain decoder with a
byte.Buffer
, it will now use thesliceReader
which is more efficient compared to the newly introducedstreamReader
. - When using any other
io.Reader
it now checks if it also implementsio.ByteReader
and constructs an appropriate fallback if necessary.