Skip to content

Releases: servo/smallbitvec

v2.5.3

17 Mar 20:59
Compare
Choose a tag to compare
  • Update dependencies.
  • Update to Rust 2021 edition.

Full Changelog: v2.5.2...v2.5.3

v2.5.2

13 Mar 23:38
Compare
Choose a tag to compare
  • Minor documentation fixes.

Full Changelog: v2.5.1...v2.5.2

v2.5.1

06 Aug 00:00
Compare
Choose a tag to compare
  • Speed up hashing of bit vectors (#27).

v2.5.0

05 Aug 23:59
Compare
Choose a tag to compare
  • Allow creating empty iterators.
  • Made SmallBitVec::new a const fn.

v2.4.0

05 Aug 23:58
5feac1a
Compare
Choose a tag to compare
  • Add last method.

v2.3.0

06 Dec 22:35
Compare
Choose a tag to compare
  • New into_storage and from_storage methods (#17).

v2.2.0

26 Oct 22:08
Compare
Choose a tag to compare
  • New methods truncate and resize (#15)
  • Improved documentation

v2.1.1

04 Jun 19:53
e9eff54
Compare
Choose a tag to compare
  • Inline hot functions to avoid performance issues (#12).

v2.1.0

17 Apr 23:52
Compare
Choose a tag to compare
  • Added range method for slicing a vector by a range of indices (#11)
  • Some code cleanup and testing improvements

v2.0.0

12 Apr 22:24
Compare
Choose a tag to compare
  • [breaking change] Use usize instead of u32 indices (#8).
  • [breaking change] Make get return Option<bool> (#7).
  • [breaking change] Make remove return the removed bit.
  • New sbvec! macro for constructing a SmallBitVec.