Skip to content

Commit 909edf5

Browse files
committed
Bump crossbeam-channel to 0.4.1
This also bumps the `rand` `dev-dependency` to `0.7`. No breaking changes as far as I can tell.
1 parent a783dd6 commit 909edf5

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

crossbeam-channel/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Version 0.4.1
2+
3+
- Bump `rand` dev-dependency to version 0.7.
4+
- Avoid time drift in `channel::tick`. (#456)
5+
- Fix unsoundness issues by adopting `MaybeUninit`. (#458)
6+
17
# Version 0.4.0
28

39
- Bump the minimum required version to 1.28.

crossbeam-channel/Cargo.toml

Lines changed: 2 additions & 2 deletions
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"
@@ -24,5 +24,5 @@ path = "../crossbeam-utils"
2424

2525
[dev-dependencies]
2626
num_cpus = "1.10.0"
27-
rand = "0.6"
27+
rand = "0.7"
2828
signal-hook = "0.1.5"

0 commit comments

Comments
 (0)