From: Alissa Rao Date: Thu, 4 Nov 2021 22:54:38 +0000 (-0700) Subject: Bump version to 1.0.8 X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=45cef9d8b1733d43c717153eea98ebedb41537f8;p=enumset.git Bump version to 1.0.8 --- diff --git a/RELEASES.md b/RELEASES.md index 93cf591..7b41b63 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,6 @@ +# Version 1.0.8 (2021-11-04) +* Optimized `EnumSet` iteration. (Thanks @MinusKelvin) + # Version 1.0.7 (2021-07-05) * Added the `#[repr(transparent)]` flag to `EnumSet` to allow for safe usage in FFI code. Note that invalid bits being set in the bitset causes UB, so diff --git a/enumset/Cargo.toml b/enumset/Cargo.toml index 76f80be..d321217 100644 --- a/enumset/Cargo.toml +++ b/enumset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "enumset" -version = "1.0.7" +version = "1.0.8" authors = ["Alissa Rao "] edition = "2018"