Skip to content

Commit 0f4092b

Browse files
committed
Prepare for the next release
- crossbeam-channel 0.5.5 -> 0.5.6 - crossbeam-deque 0.8.1 -> 0.8.2 - crossbeam-epoch 0.9.9 -> 0.9.10 - crossbeam-queue 0.3.5 -> 0.3.6 - crossbeam-utils 0.8.10 -> 0.8.11 - crossbeam 0.8.1 -> 0.8.2
1 parent 6dc9be5 commit 0f4092b

File tree

12 files changed

+33
-7
lines changed

12 files changed

+33
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.8.2
2+
3+
- Bump the minimum supported Rust version to 1.38. (#877)
4+
15
# Version 0.8.1
26

37
- Support targets that do not have atomic CAS on stable Rust (#698)

Cargo.toml

Lines changed: 2 additions & 2 deletions
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.8.1"
7+
version = "0.8.2"
88
edition = "2018"
99
rust-version = "1.38"
1010
license = "MIT OR Apache-2.0"
@@ -13,7 +13,7 @@ homepage = "https://github.com/crossbeam-rs/crossbeam"
1313
description = "Tools for concurrent programming"
1414
keywords = ["atomic", "garbage", "non-blocking", "lock-free", "rcu"]
1515
categories = ["concurrency", "memory-management", "data-structures", "no-std"]
16-
exclude = ["/.github", "/ci"]
16+
exclude = ["/.*", "/ci", "/tools"]
1717

1818
[features]
1919
default = ["std"]

crossbeam-channel/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.5.6
2+
3+
- Bump the minimum supported Rust version to 1.38. (#877)
4+
15
# Version 0.5.5
26

37
- Replace Spinlock with Mutex. (#835)

crossbeam-channel/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.5.5"
7+
version = "0.5.6"
88
edition = "2018"
99
rust-version = "1.38"
1010
license = "MIT OR Apache-2.0"

crossbeam-deque/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.8.2
2+
3+
- Bump the minimum supported Rust version to 1.38. (#877)
4+
15
# Version 0.8.1
26

37
- Fix deque steal race condition. (#726)

crossbeam-deque/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.8.1"
7+
version = "0.8.2"
88
edition = "2018"
99
rust-version = "1.38"
1010
license = "MIT OR Apache-2.0"

crossbeam-epoch/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Version 0.9.10
2+
3+
- Bump the minimum supported Rust version to 1.38. (#877)
4+
- Mitigate the risk of segmentation faults in buggy downstream implementations. (#879)
5+
- Add `{Atomic, Shared}::try_into_owned` (#701)
6+
17
# Version 0.9.9
28

39
- Replace lazy_static with once_cell. (#817)

crossbeam-epoch/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.9.9"
7+
version = "0.9.10"
88
edition = "2018"
99
rust-version = "1.38"
1010
license = "MIT OR Apache-2.0"

crossbeam-queue/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.3.6
2+
3+
- Bump the minimum supported Rust version to 1.38. (#877)
4+
15
# Version 0.3.5
26

37
- Add `ArrayQueue::force_push`. (#789)

crossbeam-queue/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.3.5"
7+
version = "0.3.6"
88
edition = "2018"
99
rust-version = "1.38"
1010
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)