Skip to content

Commit 528c3ca

Browse files
committed
Undo bump of rand as it bumps MSRV
rand 0.7 requires support for the 2018 edition, which only works on 1.32 (our current MSRV is 1.28). This also means that the root crate no longer needs a version bump.
1 parent 78043c7 commit 528c3ca

File tree

12 files changed

+7
-16
lines changed

12 files changed

+7
-16
lines changed

CHANGELOG.md

-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# Version 0.7.4
2-
3-
- Bump `rand` dev-dependency to version 0.7.
4-
51
# Version 0.7.3
62

73
- Fix breakage with nightly feature due to rust-lang/rust#65214.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "crossbeam"
44
# - Update CHANGELOG.md
55
# - Update README.md
66
# - Create "crossbeam-X.Y.Z" git tag
7-
version = "0.7.4"
7+
version = "0.7.3"
88
authors = ["The Crossbeam Project Developers"]
99
license = "MIT/Apache-2.0"
1010
readme = "README.md"
@@ -60,7 +60,7 @@ path = "./crossbeam-utils"
6060
default-features = false
6161

6262
[dev-dependencies]
63-
rand = "0.7"
63+
rand = "0.6"
6464

6565
[workspace]
6666
members = [

crossbeam-channel/CHANGELOG.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Version 0.4.1
22

3-
- Bump `rand` dev-dependency to version 0.7.
43
- Avoid time drift in `channel::tick`. (#456)
54
- Fix unsoundness issues by adopting `MaybeUninit`. (#458)
65

crossbeam-channel/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ path = "../crossbeam-utils"
2424

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

crossbeam-deque/CHANGELOG.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Version 0.7.3
22

3-
- Bump `rand` dev-dependency to version 0.7.
43
- Stop stealing from the same deque. (#448)
54
- Fix unsoundness issues by adopting `MaybeUninit`. (#458)
65

crossbeam-deque/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ version = "0.7"
2727
path = "../crossbeam-utils"
2828

2929
[dev-dependencies]
30-
rand = "0.7"
30+
rand = "0.6"

crossbeam-epoch/CHANGELOG.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Version 0.8.1
22

3-
- Bump `rand` dev-dependency to version 0.7.
43
- Bump `autocfg` dependency to version 1.0. (#460)
54
- Reduce stall in list iteration. (#376)
65
- Stop stealing from the same deque. (#448)

crossbeam-epoch/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ default-features = false
4444
autocfg = "1"
4545

4646
[dev-dependencies]
47-
rand = "0.7"
47+
rand = "0.6"

crossbeam-queue/CHANGELOG.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Version 0.2.2
22

3-
- Bump `rand` dev-dependency to version 0.7.
43
- Fix unsoundness issues by adopting `MaybeUninit`. (#458)
54

65
# Version 0.2.1

crossbeam-queue/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ path = "../crossbeam-utils"
3030
default-features = false
3131

3232
[dev-dependencies]
33-
rand = "0.7"
33+
rand = "0.6"

crossbeam-utils/CHANGELOG.md

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Version 0.7.1
22

3-
- Bump `rand` dev-dependency to version 0.7.
43
- Bump `autocfg` dependency to version 1.0. (#460)
54
- Make `AtomicCell` lockfree for u8, u16, u32, u64 sized values at 1.34+. (#454)
65

crossbeam-utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ lazy_static = { version = "1.1.0", optional = true }
2929
autocfg = "1"
3030

3131
[dev-dependencies]
32-
rand = "0.7"
32+
rand = "0.6"

0 commit comments

Comments
 (0)