aboutsummaryrefslogtreecommitdiff
path: root/vendor/bit_field/Changelog.md
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-01-08 00:21:28 +0300
committerValentin Popov <valentin@popov.link>2024-01-08 00:21:28 +0300
commit1b6a04ca5504955c571d1c97504fb45ea0befee4 (patch)
tree7579f518b23313e8a9748a88ab6173d5e030b227 /vendor/bit_field/Changelog.md
parent5ecd8cf2cba827454317368b68571df0d13d7842 (diff)
downloadfparkan-1b6a04ca5504955c571d1c97504fb45ea0befee4.tar.xz
fparkan-1b6a04ca5504955c571d1c97504fb45ea0befee4.zip
Initial vendor packages
Signed-off-by: Valentin Popov <valentin@popov.link>
Diffstat (limited to 'vendor/bit_field/Changelog.md')
-rw-r--r--vendor/bit_field/Changelog.md37
1 files changed, 37 insertions, 0 deletions
diff --git a/vendor/bit_field/Changelog.md b/vendor/bit_field/Changelog.md
new file mode 100644
index 0000000..ae3f483
--- /dev/null
+++ b/vendor/bit_field/Changelog.md
@@ -0,0 +1,37 @@
+## Unreleased
+
+# 0.10.2 – 2023-02-25
+
+- Add `#[track_caller]` to methods ([#27](https://github.com/phil-opp/rust-bit-field/pull/27))
+
+# 0.10.1 – 2020-08-23
+
+- Added bit manipulation functions for 128-bit integers ([#24](https://github.com/phil-opp/rust-bit-field/pull/24))
+
+## [0.10.0] - 2019-05-03
+### Added
+ - 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))
+
+### Changed
+ - **Breaking**: `BitField` trait now has a `BIT_LENGTH` associated const instead of a `bit_length` associated function.
+ - `BitField` and `BitArray` methods are now inlined which causes much higher performance.
+
+## [0.9.0] - 2017-10-15
+### Changed
+ - Bit indexes in `BitField` is now `usize` instead of `u8`.
+
+## [0.8.0] - 2017-07-16
+### Added
+ - `BitArray` trait to make bit indexing possible with slices.
+### Changed
+ - `bit_length` in `BitField` is now an associated function instead of a method (`bit_length()` instead of `bit_length(&self)`)
+
+## [0.7.0] - 2017-01-16
+### Added
+ - `BitField` was also implemented for: `i8`, `i16`, `i32`, `i64` and `isize`
+### Changed
+ - `length()` method in `BitField` is now called `bit_length()`
+ - `get_range()` method in `BitField` is now called `get_bits()`
+ - `set_range()` method in `BitField` is now called `set_bits()`
+### Removed
+ - `zero()` and `one()` constructor was removed from `BitField` trait.