Skip to content

Commit d841a20

Browse files
bors[bot]taiki-e
andauthored
Merge #667
667: Prepare for the next release r=taiki-e a=taiki-e Changes: - crossbeam-epoch 0.9.2 -> 0.9.3 - Make `loom` dependency optional. (#666) - crossbeam-utils 0.8.2 -> 0.8.3 - Make `loom` dependency optional. (#666) Co-authored-by: Taiki Endo <[email protected]>
2 parents f8c9922 + 2b8b3fb commit d841a20

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

crossbeam-epoch/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.9.3
2+
3+
- Make `loom` dependency optional. (#666)
4+
15
# Version 0.9.2
26

37
- Add `Atomic::compare_exchange` and `Atomic::compare_exchange_weak`. (#628)

crossbeam-epoch/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "crossbeam-epoch"
44
# - Update CHANGELOG.md
55
# - Update README.md
66
# - Create "crossbeam-epoch-X.Y.Z" git tag
7-
version = "0.9.2"
7+
version = "0.9.3"
88
authors = ["The Crossbeam Project Developers"]
99
edition = "2018"
1010
license = "MIT OR Apache-2.0"
@@ -51,7 +51,7 @@ memoffset = "0.6"
5151
loom-crate = { package = "loom", version = "0.4", optional = true }
5252

5353
[dependencies.crossbeam-utils]
54-
version = "0.8"
54+
version = "0.8.3"
5555
path = "../crossbeam-utils"
5656
default-features = false
5757

crossbeam-utils/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 0.8.3
2+
3+
- Make `loom` dependency optional. (#666)
4+
15
# Version 0.8.2
26

37
- Deprecate `AtomicCell::compare_and_swap`. Use `AtomicCell::compare_exchange` instead. (#619)

crossbeam-utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name = "crossbeam-utils"
44
# - Update CHANGELOG.md
55
# - Update README.md
66
# - Create "crossbeam-utils-X.Y.Z" git tag
7-
version = "0.8.2"
7+
version = "0.8.3"
88
authors = ["The Crossbeam Project Developers"]
99
edition = "2018"
1010
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)