File tree Expand file tree Collapse file tree 9 files changed +30
-11
lines changed Expand file tree Collapse file tree 9 files changed +30
-11
lines changed Original file line number Diff line number Diff line change 1+ # Version 0.8.1
2+
3+ - Support targets that do not have atomic CAS on stable Rust (#698 )
4+
15# Version 0.8.0
26
37- Bump the minimum supported Rust version to 1.36.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name = "crossbeam"
44# - Update CHANGELOG.md
55# - Update README.md
66# - Create "crossbeam-X.Y.Z" git tag
7- version = " 0.8.0 "
7+ version = " 0.8.1 "
88authors = [" The Crossbeam Project Developers" ]
99edition = " 2018"
1010license = " MIT OR Apache-2.0"
@@ -57,19 +57,19 @@ default-features = false
5757optional = true
5858
5959[dependencies .crossbeam-epoch ]
60- version = " 0.9"
60+ version = " 0.9.5 "
6161path = " ./crossbeam-epoch"
6262default-features = false
6363optional = true
6464
6565[dependencies .crossbeam-queue ]
66- version = " 0.3"
66+ version = " 0.3.2 "
6767path = " ./crossbeam-queue"
6868default-features = false
6969optional = true
7070
7171[dependencies .crossbeam-utils ]
72- version = " 0.8"
72+ version = " 0.8.5 "
7373path = " ./crossbeam-utils"
7474default-features = false
7575
Original file line number Diff line number Diff line change 1+ # Version 0.9.5
2+
3+ - Fix UB in ` Pointable ` impl of ` [MaybeUninit<T>] ` (#694 )
4+ - Support targets that do not have atomic CAS on stable Rust (#698 )
5+ - Fix breakage with nightly feature due to rust-lang/rust #84510 (#692 )
6+
17# Version 0.9.4
28
39- Fix UB in ` <[MaybeUninit<T>] as Pointable>::init ` when global allocator failed allocation (#690 )
Original file line number Diff line number Diff 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.4 "
7+ version = " 0.9.5 "
88authors = [" The Crossbeam Project Developers" ]
99edition = " 2018"
1010license = " MIT OR Apache-2.0"
@@ -54,7 +54,7 @@ memoffset = "0.6"
5454loom-crate = { package = " loom" , version = " 0.5" , optional = true }
5555
5656[dependencies .crossbeam-utils ]
57- version = " 0.8.4 "
57+ version = " 0.8.5 "
5858path = " ../crossbeam-utils"
5959default-features = false
6060
Original file line number Diff line number Diff line change 1+ # Version 0.3.2
2+
3+ - Support targets that do not have atomic CAS on stable Rust (#698 )
4+
15# Version 0.3.1
26
37- Make ` SegQueue::new ` const fn. (#584 )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name = "crossbeam-queue"
44# - Update CHANGELOG.md
55# - Update README.md
66# - Create "crossbeam-queue-X.Y.Z" git tag
7- version = " 0.3.1 "
7+ version = " 0.3.2 "
88authors = [" The Crossbeam Project Developers" ]
99edition = " 2018"
1010license = " MIT OR Apache-2.0"
@@ -41,7 +41,7 @@ nightly = ["crossbeam-utils/nightly"]
4141cfg-if = " 1"
4242
4343[dependencies .crossbeam-utils ]
44- version = " 0.8"
44+ version = " 0.8.5 "
4545path = " ../crossbeam-utils"
4646default-features = false
4747
Original file line number Diff line number Diff line change @@ -32,13 +32,13 @@ alloc = ["crossbeam-epoch/alloc"]
3232cfg-if = " 1"
3333
3434[dependencies .crossbeam-epoch ]
35- version = " 0.9.2 "
35+ version = " 0.9.5 "
3636path = " ../crossbeam-epoch"
3737default-features = false
3838optional = true
3939
4040[dependencies .crossbeam-utils ]
41- version = " 0.8"
41+ version = " 0.8.5 "
4242path = " ../crossbeam-utils"
4343default-features = false
4444
Original file line number Diff line number Diff line change 1+ # Version 0.8.5
2+
3+ - Add ` AtomicCell::fetch_update ` (#704 )
4+ - Support targets that do not have atomic CAS on stable Rust (#698 )
5+
16# Version 0.8.4
27
38- Bump ` loom ` dependency to version 0.5. (#686 )
Original file line number Diff line number Diff 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.4 "
7+ version = " 0.8.5 "
88authors = [" The Crossbeam Project Developers" ]
99edition = " 2018"
1010license = " MIT OR Apache-2.0"
You can’t perform that action at this time.
0 commit comments