Skip to content

Commit

Permalink
Merge #880
Browse files Browse the repository at this point in the history
880: Prepare for the next release r=taiki-e a=taiki-e

- crossbeam-channel 0.5.5 -> 0.5.6
  - Bump the minimum supported Rust version to 1.38. (#877)
- crossbeam-deque 0.8.1 -> 0.8.2
  - Bump the minimum supported Rust version to 1.38. (#877)
- crossbeam-epoch 0.9.9 -> 0.9.10
  - Bump the minimum supported Rust version to 1.38. (#877)
  - Mitigate the risk of segmentation faults in buggy downstream implementations. (#879)
  - Add `{Atomic, Shared}::try_into_owned` (#701)
- crossbeam-queue 0.3.5 -> 0.3.6
  - Bump the minimum supported Rust version to 1.38. (#877)
- crossbeam-utils 0.8.10 -> 0.8.11
  - Bump the minimum supported Rust version to 1.38. (#877)
- crossbeam 0.8.1 -> 0.8.2
  - Bump the minimum supported Rust version to 1.38. (#877)


Co-authored-by: Taiki Endo <te316e89@gmail.com>
  • Loading branch information
bors[bot] and taiki-e committed Jul 23, 2022
2 parents 6dc9be5 + 0f4092b commit 5e0f59a
Show file tree
Hide file tree
Showing 12 changed files with 33 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
# Version 0.8.2

- Bump the minimum supported Rust version to 1.38. (#877)

# Version 0.8.1

- Support targets that do not have atomic CAS on stable Rust (#698)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Expand Up @@ -4,7 +4,7 @@ name = "crossbeam"
# - Update CHANGELOG.md
# - Update README.md
# - Create "crossbeam-X.Y.Z" git tag
version = "0.8.1"
version = "0.8.2"
edition = "2018"
rust-version = "1.38"
license = "MIT OR Apache-2.0"
Expand All @@ -13,7 +13,7 @@ homepage = "https://github.com/crossbeam-rs/crossbeam"
description = "Tools for concurrent programming"
keywords = ["atomic", "garbage", "non-blocking", "lock-free", "rcu"]
categories = ["concurrency", "memory-management", "data-structures", "no-std"]
exclude = ["/.github", "/ci"]
exclude = ["/.*", "/ci", "/tools"]

[features]
default = ["std"]
Expand Down
4 changes: 4 additions & 0 deletions crossbeam-channel/CHANGELOG.md
@@ -1,3 +1,7 @@
# Version 0.5.6

- Bump the minimum supported Rust version to 1.38. (#877)

# Version 0.5.5

- Replace Spinlock with Mutex. (#835)
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-channel/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ name = "crossbeam-channel"
# - Update CHANGELOG.md
# - Update README.md
# - Create "crossbeam-channel-X.Y.Z" git tag
version = "0.5.5"
version = "0.5.6"
edition = "2018"
rust-version = "1.38"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 4 additions & 0 deletions crossbeam-deque/CHANGELOG.md
@@ -1,3 +1,7 @@
# Version 0.8.2

- Bump the minimum supported Rust version to 1.38. (#877)

# Version 0.8.1

- Fix deque steal race condition. (#726)
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-deque/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ name = "crossbeam-deque"
# - Update CHANGELOG.md
# - Update README.md
# - Create "crossbeam-deque-X.Y.Z" git tag
version = "0.8.1"
version = "0.8.2"
edition = "2018"
rust-version = "1.38"
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 6 additions & 0 deletions crossbeam-epoch/CHANGELOG.md
@@ -1,3 +1,9 @@
# Version 0.9.10

- Bump the minimum supported Rust version to 1.38. (#877)
- Mitigate the risk of segmentation faults in buggy downstream implementations. (#879)
- Add `{Atomic, Shared}::try_into_owned` (#701)

# Version 0.9.9

- Replace lazy_static with once_cell. (#817)
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-epoch/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ name = "crossbeam-epoch"
# - Update CHANGELOG.md
# - Update README.md
# - Create "crossbeam-epoch-X.Y.Z" git tag
version = "0.9.9"
version = "0.9.10"
edition = "2018"
rust-version = "1.38"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 4 additions & 0 deletions crossbeam-queue/CHANGELOG.md
@@ -1,3 +1,7 @@
# Version 0.3.6

- Bump the minimum supported Rust version to 1.38. (#877)

# Version 0.3.5

- Add `ArrayQueue::force_push`. (#789)
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-queue/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ name = "crossbeam-queue"
# - Update CHANGELOG.md
# - Update README.md
# - Create "crossbeam-queue-X.Y.Z" git tag
version = "0.3.5"
version = "0.3.6"
edition = "2018"
rust-version = "1.38"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 4 additions & 0 deletions crossbeam-utils/CHANGELOG.md
@@ -1,3 +1,7 @@
# Version 0.8.11

- Bump the minimum supported Rust version to 1.38. (#877)

# Version 0.8.10

- Fix unsoundness of `AtomicCell` on types containing niches. (#834)
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-utils/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ name = "crossbeam-utils"
# - Update CHANGELOG.md
# - Update README.md
# - Create "crossbeam-utils-X.Y.Z" git tag
version = "0.8.10"
version = "0.8.11"
edition = "2018"
rust-version = "1.38"
license = "MIT OR Apache-2.0"
Expand Down

0 comments on commit 5e0f59a

Please sign in to comment.