diff --git a/CHANGELOG.md b/CHANGELOG.md index 7192ccad7..e881a9db3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 0.8.4 + +- Remove dependency on `cfg-if`. (#1072) + # Version 0.8.3 - Bump the minimum supported Rust version to 1.61. (#1037) diff --git a/Cargo.toml b/Cargo.toml index 60a906b25..b83798516 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ name = "crossbeam" # - Update CHANGELOG.md # - Update README.md # - Create "crossbeam-X.Y.Z" git tag -version = "0.8.3" +version = "0.8.4" edition = "2021" rust-version = "1.61" license = "MIT OR Apache-2.0" diff --git a/crossbeam-channel/CHANGELOG.md b/crossbeam-channel/CHANGELOG.md index 6029b2a81..2f172fb67 100644 --- a/crossbeam-channel/CHANGELOG.md +++ b/crossbeam-channel/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 0.5.11 + +- Remove dependency on `cfg-if`. (#1072) + # Version 0.5.10 - Relax the minimum supported Rust version to 1.60. (#1056) diff --git a/crossbeam-channel/Cargo.toml b/crossbeam-channel/Cargo.toml index 37eecd901..ee4f09cc5 100644 --- a/crossbeam-channel/Cargo.toml +++ b/crossbeam-channel/Cargo.toml @@ -4,7 +4,7 @@ name = "crossbeam-channel" # - Update CHANGELOG.md # - Update README.md # - Create "crossbeam-channel-X.Y.Z" git tag -version = "0.5.10" +version = "0.5.11" edition = "2021" rust-version = "1.60" license = "MIT OR Apache-2.0" diff --git a/crossbeam-deque/CHANGELOG.md b/crossbeam-deque/CHANGELOG.md index f763754c2..691d3526e 100644 --- a/crossbeam-deque/CHANGELOG.md +++ b/crossbeam-deque/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 0.8.5 + +- Remove dependency on `cfg-if`. (#1072) + # Version 0.8.4 - Bump the minimum supported Rust version to 1.61. (#1037) diff --git a/crossbeam-deque/Cargo.toml b/crossbeam-deque/Cargo.toml index fcd455502..c915f2039 100644 --- a/crossbeam-deque/Cargo.toml +++ b/crossbeam-deque/Cargo.toml @@ -4,7 +4,7 @@ name = "crossbeam-deque" # - Update CHANGELOG.md # - Update README.md # - Create "crossbeam-deque-X.Y.Z" git tag -version = "0.8.4" +version = "0.8.5" edition = "2021" rust-version = "1.61" license = "MIT OR Apache-2.0" diff --git a/crossbeam-deque/src/deque.rs b/crossbeam-deque/src/deque.rs index 8045ec185..4b8d9a336 100644 --- a/crossbeam-deque/src/deque.rs +++ b/crossbeam-deque/src/deque.rs @@ -41,7 +41,7 @@ impl Buffer { let ptr = Box::into_raw( (0..cap) .map(|_| MaybeUninit::::uninit()) - .collect::>(), + .collect::>(), ) .cast::(); diff --git a/crossbeam-epoch/CHANGELOG.md b/crossbeam-epoch/CHANGELOG.md index efd0de97f..d5ca3a071 100644 --- a/crossbeam-epoch/CHANGELOG.md +++ b/crossbeam-epoch/CHANGELOG.md @@ -1,3 +1,8 @@ +# Version 0.9.18 + +- Remove dependency on `cfg-if`. (#1072) +- Remove dependency on `autocfg`. (#1071) + # Version 0.9.17 - Remove dependency on `memoffset`. (#1058) diff --git a/crossbeam-epoch/Cargo.toml b/crossbeam-epoch/Cargo.toml index 33db8432c..2ec20ec62 100644 --- a/crossbeam-epoch/Cargo.toml +++ b/crossbeam-epoch/Cargo.toml @@ -4,7 +4,7 @@ name = "crossbeam-epoch" # - Update CHANGELOG.md # - Update README.md # - Create "crossbeam-epoch-X.Y.Z" git tag -version = "0.9.17" +version = "0.9.18" edition = "2021" rust-version = "1.61" license = "MIT OR Apache-2.0" diff --git a/crossbeam-queue/CHANGELOG.md b/crossbeam-queue/CHANGELOG.md index 2e1b3e5bc..68c9bbd73 100644 --- a/crossbeam-queue/CHANGELOG.md +++ b/crossbeam-queue/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 0.3.11 + +- Remove dependency on `cfg-if`. (#1072) + # Version 0.3.10 - Relax the minimum supported Rust version to 1.60. (#1056) diff --git a/crossbeam-queue/Cargo.toml b/crossbeam-queue/Cargo.toml index b420454d4..0fc8df648 100644 --- a/crossbeam-queue/Cargo.toml +++ b/crossbeam-queue/Cargo.toml @@ -4,7 +4,7 @@ name = "crossbeam-queue" # - Update CHANGELOG.md # - Update README.md # - Create "crossbeam-queue-X.Y.Z" git tag -version = "0.3.10" +version = "0.3.11" edition = "2021" rust-version = "1.60" license = "MIT OR Apache-2.0" diff --git a/crossbeam-skiplist/CHANGELOG.md b/crossbeam-skiplist/CHANGELOG.md index 33659422e..6fe172889 100644 --- a/crossbeam-skiplist/CHANGELOG.md +++ b/crossbeam-skiplist/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 0.1.3 + +- Remove dependency on `cfg-if`. (#1072) + # Version 0.1.2 - Bump the minimum supported Rust version to 1.61. (#1037) diff --git a/crossbeam-skiplist/Cargo.toml b/crossbeam-skiplist/Cargo.toml index c31ae71d3..534134ae1 100644 --- a/crossbeam-skiplist/Cargo.toml +++ b/crossbeam-skiplist/Cargo.toml @@ -4,7 +4,7 @@ name = "crossbeam-skiplist" # - Update CHANGELOG.md # - Update README.md # - Create "crossbeam-skiplist-X.Y.Z" git tag -version = "0.1.2" +version = "0.1.3" edition = "2021" rust-version = "1.61" license = "MIT OR Apache-2.0" diff --git a/crossbeam-utils/CHANGELOG.md b/crossbeam-utils/CHANGELOG.md index 34c6bbda8..f6f346381 100644 --- a/crossbeam-utils/CHANGELOG.md +++ b/crossbeam-utils/CHANGELOG.md @@ -1,3 +1,7 @@ +# Version 0.8.19 + +- Remove dependency on `cfg-if`. (#1072) + # Version 0.8.18 - Relax the minimum supported Rust version to 1.60. (#1056) diff --git a/crossbeam-utils/Cargo.toml b/crossbeam-utils/Cargo.toml index 9ee24338e..6487e7a3b 100644 --- a/crossbeam-utils/Cargo.toml +++ b/crossbeam-utils/Cargo.toml @@ -4,7 +4,7 @@ name = "crossbeam-utils" # - Update CHANGELOG.md # - Update README.md # - Create "crossbeam-utils-X.Y.Z" git tag -version = "0.8.18" +version = "0.8.19" edition = "2021" rust-version = "1.60" license = "MIT OR Apache-2.0"