1## Unreleased 2 3# 0.10.2 – 2023-02-25 4 5- Add `#[track_caller]` to methods ([#27](https://github.com/phil-opp/rust-bit-field/pull/27)) 6 7# 0.10.1 – 2020-08-23 8 9- Added bit manipulation functions for 128-bit integers ([#24](https://github.com/phil-opp/rust-bit-field/pull/24)) 10 11## [0.10.0] - 2019-05-03 12### Added 13 - Support all range types (`Range`, `RangeInclusive`, `RangeFrom`, …) for `get_bits` and `set_bits` methods ([#22](https://github.com/phil-opp/rust-bit-field/pull/22)) 14 15### Changed 16 - **Breaking**: `BitField` trait now has a `BIT_LENGTH` associated const instead of a `bit_length` associated function. 17 - `BitField` and `BitArray` methods are now inlined which causes much higher performance. 18 19## [0.9.0] - 2017-10-15 20### Changed 21 - Bit indexes in `BitField` is now `usize` instead of `u8`. 22 23## [0.8.0] - 2017-07-16 24### Added 25 - `BitArray` trait to make bit indexing possible with slices. 26### Changed 27 - `bit_length` in `BitField` is now an associated function instead of a method (`bit_length()` instead of `bit_length(&self)`) 28 29## [0.7.0] - 2017-01-16 30### Added 31 - `BitField` was also implemented for: `i8`, `i16`, `i32`, `i64` and `isize` 32### Changed 33 - `length()` method in `BitField` is now called `bit_length()` 34 - `get_range()` method in `BitField` is now called `get_bits()` 35 - `set_range()` method in `BitField` is now called `set_bits()` 36### Removed 37 - `zero()` and `one()` constructor was removed from `BitField` trait. 38