Skip to content

Commit

Permalink
Bump crossbeam-utils to 0.6.4 rather than 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Stjepan Glavina committed Jan 28, 2019
1 parent 0c9a7b2 commit f826790
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ version = "0.1.0"
path = "./crossbeam-queue"

[dependencies.crossbeam-utils]
version = "0.7.0"
version = "0.6.4"
path = "./crossbeam-utils"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-channel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ categories = ["algorithms", "concurrency", "data-structures"]
smallvec = "0.6.2"

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

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-deque/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ version = "0.7"
path = "../crossbeam-epoch"

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

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-epoch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ version = "0.4"
default-features = false

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

Expand Down
2 changes: 1 addition & 1 deletion crossbeam-queue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ keywords = ["queue", "mpmc", "lock-free", "producer", "consumer"]
categories = ["concurrency", "data-structures"]

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

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-skiplist/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ path = "../crossbeam-epoch"
default-features = false

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

Expand Down
2 changes: 1 addition & 1 deletion crossbeam-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Version 0.7.0
# Version 0.6.4

- Add `WaitGroup`, `ShardedLock`, and `Backoff`.
- Add `fetch_*` methods for `AtomicCell<i128>` and `AtomicCell<u128>`.
Expand Down
2 changes: 1 addition & 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.0"
version = "0.6.4"
authors = ["The Crossbeam Project Developers"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion crossbeam-utils/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
crossbeam-utils = "0.7"
crossbeam-utils = "0.6"
```

Next, add this to your crate:
Expand Down

0 comments on commit f826790

Please sign in to comment.