Skip to content

Commit 0210b05

Browse files
bors[bot]jonhoo
andauthored
Merge #474
474: Patch release for all crossbeam crates. r=jeehoonkang a=jonhoo This bumps the patch version for all sub-crates and the top-level crate and updates the changelogs with references to PRs where applicable. As far as I can tell, there are no breaking changes. The top-level crate has not change at all, though I bumped `rand` to `0.7` in all the crates, which I guess technically requires a patch bump if we do another release. Fixes #473. Closes #472. Closes #468. Closes #409. Not sure if this also solves #347 by virtue of #458? Co-authored-by: Jon Gjengset <[email protected]>
2 parents bcd5f77 + 528c3ca commit 0210b05

File tree

10 files changed

+32
-5
lines changed

10 files changed

+32
-5
lines changed

crossbeam-channel/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Version 0.4.1
2+
3+
- Avoid time drift in `channel::tick`. (#456)
4+
- Fix unsoundness issues by adopting `MaybeUninit`. (#458)
5+
16
# Version 0.4.0
27

38
- Bump the minimum required version to 1.28.

crossbeam-channel/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "crossbeam-channel"
44
# - Update CHANGELOG.md
55
# - Update README.md
66
# - Create "crossbeam-channel-X.Y.Z" git tag
7-
version = "0.4.0"
7+
version = "0.4.1"
88
authors = ["The Crossbeam Project Developers"]
99
license = "MIT/Apache-2.0 AND BSD-2-Clause"
1010
readme = "README.md"

crossbeam-deque/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Version 0.7.3
2+
3+
- Stop stealing from the same deque. (#448)
4+
- Fix unsoundness issues by adopting `MaybeUninit`. (#458)
5+
16
# Version 0.7.2
27

38
- Bump `crossbeam-epoch` to `0.8`.

crossbeam-deque/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "crossbeam-deque"
44
# - Update CHANGELOG.md
55
# - Update README.md
66
# - Create "crossbeam-deque-X.Y.Z" git tag
7-
version = "0.7.2"
7+
version = "0.7.3"
88
authors = ["The Crossbeam Project Developers"]
99
license = "MIT/Apache-2.0"
1010
readme = "README.md"

crossbeam-epoch/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# Version 0.8.1
2+
3+
- Bump `autocfg` dependency to version 1.0. (#460)
4+
- Reduce stall in list iteration. (#376)
5+
- Stop stealing from the same deque. (#448)
6+
- Fix unsoundness issues by adopting `MaybeUninit`. (#458)
7+
- Fix use-after-free in lock-free queue. (#466)
8+
19
# Version 0.8.0
210

311
- Bump the minimum required version to 1.28.

crossbeam-epoch/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "crossbeam-epoch"
44
# - Update CHANGELOG.md
55
# - Update README.md
66
# - Create "crossbeam-epoch-X.Y.Z" git tag
7-
version = "0.8.0"
7+
version = "0.8.1"
88
authors = ["The Crossbeam Project Developers"]
99
license = "MIT/Apache-2.0"
1010
readme = "README.md"

crossbeam-queue/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.2.2
2+
3+
- Fix unsoundness issues by adopting `MaybeUninit`. (#458)
4+
15
# Version 0.2.1
26

37
- Add `no_std` support.

crossbeam-queue/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "crossbeam-queue"
44
# - Update CHANGELOG.md
55
# - Update README.md
66
# - Create "crossbeam-queue-X.Y.Z" git tag
7-
version = "0.2.1"
7+
version = "0.2.2"
88
authors = ["The Crossbeam Project Developers"]
99
license = "MIT/Apache-2.0 AND BSD-2-Clause"
1010
readme = "README.md"

crossbeam-utils/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Version 0.7.1
2+
3+
- Bump `autocfg` dependency to version 1.0. (#460)
4+
- Make `AtomicCell` lockfree for u8, u16, u32, u64 sized values at 1.34+. (#454)
5+
16
# Version 0.7.0
27

38
- Bump the minimum required version to 1.28.

crossbeam-utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "crossbeam-utils"
44
# - Update CHANGELOG.md
55
# - Update README.md
66
# - Create "crossbeam-utils-X.Y.Z" git tag
7-
version = "0.7.0"
7+
version = "0.7.1"
88
authors = ["The Crossbeam Project Developers"]
99
license = "MIT/Apache-2.0"
1010
readme = "README.md"

0 commit comments

Comments
 (0)