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
+
1
5
# Version 0.8.0
2
6
3
7
- 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"
4
4
# - Update CHANGELOG.md
5
5
# - Update README.md
6
6
# - Create "crossbeam-X.Y.Z" git tag
7
- version = " 0.8.0 "
7
+ version = " 0.8.1 "
8
8
authors = [" The Crossbeam Project Developers" ]
9
9
edition = " 2018"
10
10
license = " MIT OR Apache-2.0"
@@ -57,19 +57,19 @@ default-features = false
57
57
optional = true
58
58
59
59
[dependencies .crossbeam-epoch ]
60
- version = " 0.9"
60
+ version = " 0.9.5 "
61
61
path = " ./crossbeam-epoch"
62
62
default-features = false
63
63
optional = true
64
64
65
65
[dependencies .crossbeam-queue ]
66
- version = " 0.3"
66
+ version = " 0.3.2 "
67
67
path = " ./crossbeam-queue"
68
68
default-features = false
69
69
optional = true
70
70
71
71
[dependencies .crossbeam-utils ]
72
- version = " 0.8"
72
+ version = " 0.8.5 "
73
73
path = " ./crossbeam-utils"
74
74
default-features = false
75
75
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
+
1
7
# Version 0.9.4
2
8
3
9
- 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"
4
4
# - Update CHANGELOG.md
5
5
# - Update README.md
6
6
# - Create "crossbeam-epoch-X.Y.Z" git tag
7
- version = " 0.9.4 "
7
+ version = " 0.9.5 "
8
8
authors = [" The Crossbeam Project Developers" ]
9
9
edition = " 2018"
10
10
license = " MIT OR Apache-2.0"
@@ -54,7 +54,7 @@ memoffset = "0.6"
54
54
loom-crate = { package = " loom" , version = " 0.5" , optional = true }
55
55
56
56
[dependencies .crossbeam-utils ]
57
- version = " 0.8.4 "
57
+ version = " 0.8.5 "
58
58
path = " ../crossbeam-utils"
59
59
default-features = false
60
60
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
+
1
5
# Version 0.3.1
2
6
3
7
- Make ` SegQueue::new ` const fn. (#584 )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name = "crossbeam-queue"
4
4
# - Update CHANGELOG.md
5
5
# - Update README.md
6
6
# - Create "crossbeam-queue-X.Y.Z" git tag
7
- version = " 0.3.1 "
7
+ version = " 0.3.2 "
8
8
authors = [" The Crossbeam Project Developers" ]
9
9
edition = " 2018"
10
10
license = " MIT OR Apache-2.0"
@@ -41,7 +41,7 @@ nightly = ["crossbeam-utils/nightly"]
41
41
cfg-if = " 1"
42
42
43
43
[dependencies .crossbeam-utils ]
44
- version = " 0.8"
44
+ version = " 0.8.5 "
45
45
path = " ../crossbeam-utils"
46
46
default-features = false
47
47
Original file line number Diff line number Diff line change @@ -32,13 +32,13 @@ alloc = ["crossbeam-epoch/alloc"]
32
32
cfg-if = " 1"
33
33
34
34
[dependencies .crossbeam-epoch ]
35
- version = " 0.9.2 "
35
+ version = " 0.9.5 "
36
36
path = " ../crossbeam-epoch"
37
37
default-features = false
38
38
optional = true
39
39
40
40
[dependencies .crossbeam-utils ]
41
- version = " 0.8"
41
+ version = " 0.8.5 "
42
42
path = " ../crossbeam-utils"
43
43
default-features = false
44
44
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
+
1
6
# Version 0.8.4
2
7
3
8
- 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"
4
4
# - Update CHANGELOG.md
5
5
# - Update README.md
6
6
# - Create "crossbeam-utils-X.Y.Z" git tag
7
- version = " 0.8.4 "
7
+ version = " 0.8.5 "
8
8
authors = [" The Crossbeam Project Developers" ]
9
9
edition = " 2018"
10
10
license = " MIT OR Apache-2.0"
You can’t perform that action at this time.
0 commit comments