summaryrefslogtreecommitdiffstats
path: root/vendor/bitmaps/CHANGELOG.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 12:41:41 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 12:41:41 +0000
commit10ee2acdd26a7f1298c6f6d6b7af9b469fe29b87 (patch)
treebdffd5d80c26cf4a7a518281a204be1ace85b4c1 /vendor/bitmaps/CHANGELOG.md
parentReleasing progress-linux version 1.70.0+dfsg1-9~progress7.99u1. (diff)
downloadrustc-10ee2acdd26a7f1298c6f6d6b7af9b469fe29b87.tar.xz
rustc-10ee2acdd26a7f1298c6f6d6b7af9b469fe29b87.zip
Merging upstream version 1.70.0+dfsg2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/bitmaps/CHANGELOG.md')
-rw-r--r--vendor/bitmaps/CHANGELOG.md34
1 files changed, 34 insertions, 0 deletions
diff --git a/vendor/bitmaps/CHANGELOG.md b/vendor/bitmaps/CHANGELOG.md
new file mode 100644
index 000000000..f9d9b038b
--- /dev/null
+++ b/vendor/bitmaps/CHANGELOG.md
@@ -0,0 +1,34 @@
+# Changelog
+
+All notable changes to this project will be documented in this file.
+
+The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project
+adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
+
+## [2.1.0] - 2020-03-26
+
+### ADDED
+
+- There is now a `std` feature flag, on by default, which you can disable to get a `no_std` crate.
+
+## [2.0.0] - 2019-09-09
+
+### CHANGED
+
+- `Bits` now does a lot less work, which is now being done instead by the `BitOps` trait on its
+ storage type. This turns out to improve compilation time quite considerably. If you were using
+ methods on `Bits` directly, they will have moved to `BitOps`.
+- `Debug` now prints a single hex value for the entire bitmap, rather than deferring to the
+ storage type.
+- `Iter` now takes a reference instead of a copy, which is more sensible for larger bitmaps.
+
+### ADDED
+
+- `Bitmap` now implements `BitAnd`, `BitOr`, `BitXor`, their equivalent assignation traits, and
+ `Not`, meaning you can now use bitwise operators on them, even the very big array-of-u128 ones.
+- A `Bitmap::mask()` constructor has been added, to construct bitmasks more efficiently, now that
+ there are bitwise operators to use them with.
+
+## [1.0.0] - 2019-09-06
+
+Initial release.