Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump master to 1.0 and mark as 'publish = false' #576

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"]
Expand Down Expand Up @@ -45,31 +46,31 @@ nightly = ["crossbeam-epoch/nightly", "crossbeam-utils/nightly", "crossbeam-queu
cfg-if = "1"

[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

Expand Down
5 changes: 3 additions & 2 deletions crossbeam-channel/Cargo.toml
Original file line number Diff line number Diff line change
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.4.3"
version = "1.0.0"
authors = ["The Crossbeam Project Developers"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -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"]
Expand All @@ -27,7 +28,7 @@ std = ["crossbeam-utils/std"]
cfg-if = "1"

[dependencies.crossbeam-utils]
version = "0.7"
version = "1"
path = "../crossbeam-utils"
default-features = false
optional = true
Expand Down
7 changes: 4 additions & 3 deletions crossbeam-deque/Cargo.toml
Original file line number Diff line number Diff line change
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.3"
version = "1.0.0"
authors = ["The Crossbeam Project Developers"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -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"]
Expand All @@ -27,13 +28,13 @@ std = ["crossbeam-epoch/std", "crossbeam-utils/std"]
cfg-if = "1"

[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
Expand Down
5 changes: 3 additions & 2 deletions crossbeam-epoch/Cargo.toml
Original file line number Diff line number Diff line change
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.8.2"
version = "1.0.0"
authors = ["The Crossbeam Project Developers"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -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"]
Expand Down Expand Up @@ -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

Expand Down
5 changes: 3 additions & 2 deletions crossbeam-queue/Cargo.toml
Original file line number Diff line number Diff line change
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.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"
Expand All @@ -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"]
Expand All @@ -37,7 +38,7 @@ nightly = ["crossbeam-utils/nightly"]
cfg-if = "1"

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

Expand Down
4 changes: 2 additions & 2 deletions crossbeam-skiplist/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ nightly = ["crossbeam-epoch/nightly", "crossbeam-utils/nightly"]
cfg-if = "1"

[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

Expand Down
3 changes: 2 additions & 1 deletion crossbeam-utils/Cargo.toml
Original file line number Diff line number Diff line change
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.7.2"
version = "1.0.0"
authors = ["The Crossbeam Project Developers"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -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"]
Expand Down