Skip to content

Releases: kelindar/binary

v1.0.19

25 Feb 13:42
3eeedea
Compare
Choose a tag to compare

What's Changed

  • avoid to using SliceHeader, more portable code by @gggrafff in #19

New Contributors

Full Changelog: v1.0.18...v1.0.19

v1.0.18

06 Oct 11:26
3a4b1f0
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.17...v1.0.18

v1.0.17

13 Dec 06:56
Compare
Choose a tag to compare

This release fixes a recently introduced regression while scanning structs with unexported fields.

v1.0.16

05 Dec 14:34
Compare
Choose a tag to compare

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() and ReadVarint() directly in the reader.
  • When using a plain decoder with a byte.Buffer, it will now use the sliceReader which is more efficient compared to the newly introduced streamReader.
  • When using any other io.Reader it now checks if it also implements io.ByteReader and constructs an appropriate fallback if necessary.

v1.0.15

23 Nov 18:05
1f80b4d
Compare
Choose a tag to compare
Fix slice of ptr and custom marshaler on ptr (#11)

v1.0.14

25 Sep 09:02
1f7663f
Compare
Choose a tag to compare

Added pointer support (see #7)

v1.0.13

03 Aug 12:23
16852db
Compare
Choose a tag to compare

Added sorted.Timeseries type

v1.0.12

01 Aug 14:50
Compare
Choose a tag to compare

Implicit sorting for timestamps

v1.0.11

01 Aug 14:30
462771a
Compare
Choose a tag to compare

Added sorted timestamps

v1.0.10

17 Jun 07:44
Compare
Choose a tag to compare
adding nocopy.HashMap