Skip to content

Commit

Permalink
Prepare for the next release
Browse files Browse the repository at this point in the history
- crossbeam 0.7.3
- crossbeam-channel 0.4.0
- crossbeam-deque 0.7.2
- crossbeam-epoch 0.8.0
- crossbeam-queue 0.2.0
- crossbeam-utils 0.7.0
  • Loading branch information
taiki-e committed Nov 5, 2019
1 parent 99762ee commit c76f145
Show file tree
Hide file tree
Showing 13 changed files with 55 additions and 18 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,11 @@
# Version 0.7.3

- Fix breakage with nightly feature due to rust-lang/rust#65214.
- Bump `crossbeam-channel` to `0.4`.
- Bump `crossbeam-epoch` to `0.8`.
- Bump `crossbeam-queue` to `0.2`.
- Bump `crossbeam-utils` to `0.7`.

# Version 0.7.2

- Bump `crossbeam-channel` to `0.3.9`.
Expand Down
10 changes: 5 additions & 5 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.7.2"
version = "0.7.3"
authors = ["The Crossbeam Project Developers"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand Down Expand Up @@ -35,7 +35,7 @@ alloc = ["crossbeam-epoch/alloc", "crossbeam-utils/alloc"]
cfg-if = "0.1.2"

[dependencies.crossbeam-channel]
version = "0.3.9"
version = "0.4"
path = "./crossbeam-channel"
optional = true

Expand All @@ -45,17 +45,17 @@ path = "./crossbeam-deque"
optional = true

[dependencies.crossbeam-epoch]
version = "0.7.2"
version = "0.8"
path = "./crossbeam-epoch"
default-features = false

[dependencies.crossbeam-queue]
version = "0.1.0"
version = "0.2"
path = "./crossbeam-queue"
optional = true

[dependencies.crossbeam-utils]
version = "0.6.6"
version = "0.7"
path = "./crossbeam-utils"
default-features = false

Expand Down
5 changes: 5 additions & 0 deletions crossbeam-channel/CHANGELOG.md
@@ -1,3 +1,8 @@
# Version 0.4.0

- Bump the minimum required version to 1.28.
- Bump `crossbeam-utils` to `0.7`.

# Version 0.3.9

- Fix a bug in reference counting.
Expand Down
4 changes: 2 additions & 2 deletions 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.3.9"
version = "0.4.0"
authors = ["The Crossbeam Project Developers"]
license = "MIT/Apache-2.0 AND BSD-2-Clause"
readme = "README.md"
Expand All @@ -16,7 +16,7 @@ keywords = ["channel", "mpmc", "select", "golang", "message"]
categories = ["algorithms", "concurrency", "data-structures"]

[dependencies.crossbeam-utils]
version = "0.6.5"
version = "0.7"
path = "../crossbeam-utils"

[dev-dependencies]
Expand Down
5 changes: 5 additions & 0 deletions crossbeam-deque/CHANGELOG.md
@@ -1,3 +1,8 @@
# Version 0.7.2

- Bump `crossbeam-epoch` to `0.8`.
- Bump `crossbeam-utils` to `0.7`.

# Version 0.7.1

- Bump the minimum required version of `crossbeam-utils`.
Expand Down
6 changes: 3 additions & 3 deletions 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.7.1"
version = "0.7.2"
authors = ["The Crossbeam Project Developers"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand All @@ -16,11 +16,11 @@ keywords = ["chase-lev", "lock-free", "scheduler", "scheduling"]
categories = ["algorithms", "concurrency", "data-structures"]

[dependencies.crossbeam-epoch]
version = "0.7"
version = "0.8"
path = "../crossbeam-epoch"

[dependencies.crossbeam-utils]
version = "0.6.5"
version = "0.7"
path = "../crossbeam-utils"

[dev-dependencies]
Expand Down
7 changes: 7 additions & 0 deletions crossbeam-epoch/CHANGELOG.md
@@ -1,3 +1,10 @@
# Version 0.8.0

- Bump the minimum required version to 1.28.
- Fix breakage with nightly feature due to rust-lang/rust#65214.
- Make `Atomic::null()` const function at 1.31+.
- Bump `crossbeam-utils` to `0.7`.

# Version 0.7.2

- Add `Atomic::into_owned()`.
Expand Down
4 changes: 2 additions & 2 deletions 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.7.2"
version = "0.8.0"
authors = ["The Crossbeam Project Developers"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand All @@ -27,7 +27,7 @@ cfg-if = "0.1.2"
memoffset = "0.5"

[dependencies.crossbeam-utils]
version = "0.6"
version = "0.7"
path = "../crossbeam-utils"
default-features = false

Expand Down
5 changes: 5 additions & 0 deletions crossbeam-queue/CHANGELOG.md
@@ -1,3 +1,8 @@
# Version 0.2.0

- Bump the minimum required version to 1.28.
- Bump `crossbeam-utils` to `0.7`.

# Version 0.1.2

- Update `crossbeam-utils` to `0.6.5`.
Expand Down
4 changes: 2 additions & 2 deletions 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.1.2"
version = "0.2.0"
authors = ["The Crossbeam Project Developers"]
license = "MIT/Apache-2.0 AND BSD-2-Clause"
readme = "README.md"
Expand All @@ -16,7 +16,7 @@ keywords = ["queue", "mpmc", "lock-free", "producer", "consumer"]
categories = ["concurrency", "data-structures"]

[dependencies.crossbeam-utils]
version = "0.6.5"
version = "0.7"
path = "../crossbeam-utils"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crossbeam-skiplist/Cargo.toml
Expand Up @@ -25,12 +25,12 @@ alloc = ["crossbeam-epoch/alloc", "crossbeam-utils/alloc"]
cfg-if = "0.1.2"

[dependencies.crossbeam-epoch]
version = "0.7"
version = "0.8"
path = "../crossbeam-epoch"
default-features = false

[dependencies.crossbeam-utils]
version = "0.6"
version = "0.7"
path = "../crossbeam-utils"
default-features = false

Expand Down
9 changes: 8 additions & 1 deletion crossbeam-utils/CHANGELOG.md
@@ -1,3 +1,10 @@
# Version 0.7.0

- Bump the minimum required version to 1.28.
- Fix breakage with nightly feature due to rust-lang/rust#65214.
- Apply `#[repr(transparent)]` to `AtomicCell`.
- Make `AtomicCell::new()` const function at 1.31+.

# Version 0.6.6

- Add `UnwindSafe` and `RefUnwindSafe` impls for `AtomicCell`.
Expand Down Expand Up @@ -30,7 +37,7 @@

- Fix a soundness bug in `Scope::spawn()`.
- Remove the `T: 'scope` bound on `ScopedJoinHandle`.

# Version 0.6.0

- Move `AtomicConsume` to `atomic` module.
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.6.6"
version = "0.7.0"
authors = ["The Crossbeam Project Developers"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand Down

0 comments on commit c76f145

Please sign in to comment.