From db53f569dffa2b3d7f63baed7a900eb15febe6c7 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Fri, 9 Oct 2020 21:54:19 +0900 Subject: [PATCH] Bump master to 1.0 and mark as 'publish = false' --- Cargo.toml | 13 +++++++------ crossbeam-channel/Cargo.toml | 5 +++-- crossbeam-deque/Cargo.toml | 7 ++++--- crossbeam-epoch/Cargo.toml | 5 +++-- crossbeam-queue/Cargo.toml | 5 +++-- crossbeam-utils/Cargo.toml | 3 ++- 6 files changed, 22 insertions(+), 16 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 93cd2f520..553377565 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ name = "crossbeam" # - Update CHANGELOG.md # - Update README.md # - Create "crossbeam-X.Y.Z" git tag -version = "0.7.3" +version = "1.0.0" authors = ["The Crossbeam Project Developers"] edition = "2018" license = "MIT OR Apache-2.0" @@ -16,6 +16,7 @@ description = "Tools for concurrent programming" keywords = ["atomic", "garbage", "non-blocking", "lock-free", "rcu"] categories = ["concurrency", "memory-management", "data-structures", "no-std"] exclude = ["/ci/*", "/bors.toml"] +publish = false # blocked on https://github.com/crossbeam-rs/crossbeam/issues/503 [features] default = ["std"] @@ -45,31 +46,31 @@ nightly = ["crossbeam-epoch/nightly", "crossbeam-utils/nightly", "crossbeam-queu cfg-if = "0.1.10" [dependencies.crossbeam-channel] -version = "0.4" +version = "1" path = "./crossbeam-channel" default-features = false optional = true [dependencies.crossbeam-deque] -version = "0.7.0" +version = "1" path = "./crossbeam-deque" default-features = false optional = true [dependencies.crossbeam-epoch] -version = "0.8" +version = "1" path = "./crossbeam-epoch" default-features = false optional = true [dependencies.crossbeam-queue] -version = "0.2" +version = "1" path = "./crossbeam-queue" default-features = false optional = true [dependencies.crossbeam-utils] -version = "0.7" +version = "1" path = "./crossbeam-utils" default-features = false diff --git a/crossbeam-channel/Cargo.toml b/crossbeam-channel/Cargo.toml index 429dc4817..21ac249b9 100644 --- a/crossbeam-channel/Cargo.toml +++ b/crossbeam-channel/Cargo.toml @@ -4,7 +4,7 @@ name = "crossbeam-channel" # - Update CHANGELOG.md # - Update README.md # - Create "crossbeam-channel-X.Y.Z" git tag -version = "0.4.3" +version = "1.0.0" authors = ["The Crossbeam Project Developers"] edition = "2018" license = "MIT OR Apache-2.0" @@ -15,6 +15,7 @@ documentation = "https://docs.rs/crossbeam-channel" description = "Multi-producer multi-consumer channels for message passing" keywords = ["channel", "mpmc", "select", "golang", "message"] categories = ["algorithms", "concurrency", "data-structures"] +publish = false # blocked on https://github.com/crossbeam-rs/crossbeam/issues/503 [features] default = ["std"] @@ -27,7 +28,7 @@ std = ["crossbeam-utils/std"] cfg-if = "0.1.10" [dependencies.crossbeam-utils] -version = "0.7" +version = "1" path = "../crossbeam-utils" default-features = false optional = true diff --git a/crossbeam-deque/Cargo.toml b/crossbeam-deque/Cargo.toml index 6de900e14..6bc6b7bd8 100644 --- a/crossbeam-deque/Cargo.toml +++ b/crossbeam-deque/Cargo.toml @@ -4,7 +4,7 @@ name = "crossbeam-deque" # - Update CHANGELOG.md # - Update README.md # - Create "crossbeam-deque-X.Y.Z" git tag -version = "0.7.3" +version = "1.0.0" authors = ["The Crossbeam Project Developers"] edition = "2018" license = "MIT OR Apache-2.0" @@ -15,6 +15,7 @@ documentation = "https://docs.rs/crossbeam-deque" description = "Concurrent work-stealing deque" keywords = ["chase-lev", "lock-free", "scheduler", "scheduling"] categories = ["algorithms", "concurrency", "data-structures"] +publish = false # blocked on https://github.com/crossbeam-rs/crossbeam/issues/503 [features] default = ["std"] @@ -27,13 +28,13 @@ std = ["crossbeam-epoch/std", "crossbeam-utils/std"] cfg-if = "0.1.10" [dependencies.crossbeam-epoch] -version = "0.8" +version = "1" path = "../crossbeam-epoch" default-features = false optional = true [dependencies.crossbeam-utils] -version = "0.7" +version = "1" path = "../crossbeam-utils" default-features = false optional = true diff --git a/crossbeam-epoch/Cargo.toml b/crossbeam-epoch/Cargo.toml index 10611979d..e5eebb1e6 100644 --- a/crossbeam-epoch/Cargo.toml +++ b/crossbeam-epoch/Cargo.toml @@ -4,7 +4,7 @@ name = "crossbeam-epoch" # - Update CHANGELOG.md # - Update README.md # - Create "crossbeam-epoch-X.Y.Z" git tag -version = "0.8.2" +version = "1.0.0" authors = ["The Crossbeam Project Developers"] edition = "2018" license = "MIT OR Apache-2.0" @@ -15,6 +15,7 @@ documentation = "https://docs.rs/crossbeam-epoch" description = "Epoch-based garbage collection" keywords = ["lock-free", "rcu", "atomic", "garbage"] categories = ["concurrency", "memory-management", "no-std"] +publish = false # blocked on https://github.com/crossbeam-rs/crossbeam/issues/503 [features] default = ["std"] @@ -42,7 +43,7 @@ const_fn = "0.4" memoffset = "0.5.4" [dependencies.crossbeam-utils] -version = "0.7" +version = "1" path = "../crossbeam-utils" default-features = false diff --git a/crossbeam-queue/Cargo.toml b/crossbeam-queue/Cargo.toml index 2dc86e6e6..2cc235c65 100644 --- a/crossbeam-queue/Cargo.toml +++ b/crossbeam-queue/Cargo.toml @@ -4,7 +4,7 @@ name = "crossbeam-queue" # - Update CHANGELOG.md # - Update README.md # - Create "crossbeam-queue-X.Y.Z" git tag -version = "0.2.2" +version = "1.0.0" authors = ["The Crossbeam Project Developers"] edition = "2018" license = "MIT AND BSD-2-Clause OR Apache-2.0 AND BSD-2-Clause" @@ -15,6 +15,7 @@ documentation = "https://docs.rs/crossbeam-queue" description = "Concurrent queues" keywords = ["queue", "mpmc", "lock-free", "producer", "consumer"] categories = ["concurrency", "data-structures"] +publish = false # blocked on https://github.com/crossbeam-rs/crossbeam/issues/503 [features] default = ["std"] @@ -37,7 +38,7 @@ nightly = ["crossbeam-utils/nightly"] cfg-if = "0.1.10" [dependencies.crossbeam-utils] -version = "0.7" +version = "1" path = "../crossbeam-utils" default-features = false diff --git a/crossbeam-utils/Cargo.toml b/crossbeam-utils/Cargo.toml index eaa82ccbc..617dff5da 100644 --- a/crossbeam-utils/Cargo.toml +++ b/crossbeam-utils/Cargo.toml @@ -4,7 +4,7 @@ name = "crossbeam-utils" # - Update CHANGELOG.md # - Update README.md # - Create "crossbeam-utils-X.Y.Z" git tag -version = "0.7.2" +version = "1.0.0" authors = ["The Crossbeam Project Developers"] edition = "2018" license = "MIT OR Apache-2.0" @@ -15,6 +15,7 @@ documentation = "https://docs.rs/crossbeam-utils" description = "Utilities for concurrent programming" keywords = ["scoped", "thread", "atomic", "cache"] categories = ["algorithms", "concurrency", "data-structures", "no-std"] +publish = false # blocked on https://github.com/crossbeam-rs/crossbeam/issues/503 [features] default = ["std"]