All Versions
14
Latest Version
Avg Release Cycle
73 days
Latest Release
1511 days ago

Changelog History
Page 1

  • v1.3.4 Changes

    February 07, 2020

    ๐Ÿš€ This patch release squashes deprecation warnings for the try! macro, in ๐Ÿ‘ accordance with byteorder's minimum supported Rust version (currently at Rust 1.12.0).

  • v1.3.3 Changes

    February 07, 2020

    This patch release adds ByteOrder::write_i8_into() as a simple, safe interface for ordinarily unsafe or tedious code.

  • v1.3.2 Changes

    June 09, 2019

    This patch release adds ReadBytesExt::read_i8_into() as a simple, safe interface for ordinarily unsafe or tedious code.

  • v1.3.1 Changes

    January 22, 2019

    ๐Ÿš€ This minor release performs mostly small internal changes. Going forward, these are not going to be incorporated into the changelog.

  • v1.3.0 Changes

    January 19, 2019

    ๐Ÿš€ This new minor release now enables i128 support automatically on Rust ๐Ÿ‘ compilers that support 128-bit integers. The i128 feature is now a no-op, but continues to exist for backward compatibility purposes. The crate continues to maintain compatibility with Rust 1.12.0.

    ๐Ÿš€ This release also deprecates the ByteOrder trait methods read_f32_into_unchecked and read_f64_into_unchecked in favor of read_f32_into and read_f64_into. This was an oversight from the 1.2 release ๐Ÿ—„ where the corresponding methods on ReadBytesExt were deprecated.

    quickcheck and rand were bumped to 0.8 and 0.6, respectively.

    ๐Ÿ“š A few small documentation related bugs have been fixed.

  • v1.2.7 Changes

    October 26, 2018

    ๐Ÿš€ This patch release excludes some CI files from the crate release and updates the license field to use OR instead of /.

  • v1.2.6 Changes

    August 25, 2018

    ๐Ÿš€ This patch release fixes some test compilation errors introduced by an ๐Ÿš€ over-eager release of 1.2.5.

  • v1.2.5 Changes

    August 25, 2018

    ๐Ÿš€ This patch release fixes some typos in the docs, adds doc tests to methods on WriteByteExt and bumps the quickcheck dependency to 0.7.

  • v1.2.4 Changes

    July 30, 2018

    ๐Ÿš€ This patch release adds support for 48-bit integers by adding the following methods to the ByteOrder trait: read_u48, read_i48, write_u48 and write_i48. Corresponding methods have been added to the ReadBytesExt and WriteBytesExt traits as well.

  • v1.2.3 Changes

    May 12, 2018

    ๐Ÿš€ This patch release removes the use of feature(i128_type) from byteorder, since it has been stabilized. We leave byteorder's i128 feature in place ๐Ÿ‘ in order to continue supporting compilation on older versions of Rust.