Skip to content

Releases: mapbox/protozero

Version 1.4.1

24 Aug 10:07
Compare
Choose a tag to compare

Fixed

  • GCC 4.8 compile fixed

Added

  • New ability to dynamically require the module as a node module to ease building against from other node C++ modules.

Version 1.4.0

22 Jul 10:26
Compare
Choose a tag to compare

Changed

  • Use more efficient new skip_varint() function when iterating over
    packed varints.
  • Split decode_varint() function into two functions speeding up the
    common case where a varint is only one byte long.
  • Introduce new class iterator_range used instead of std::pair of
    iterators. This way the objects can be used in range-based for loops.
    Read UPGRADING.md for details.
  • Introduce new class data_view and functions using and returning it.
    Read UPGRADING.md for details.