File tree Expand file tree Collapse file tree 12 files changed +48
-12
lines changed Expand file tree Collapse file tree 12 files changed +48
-12
lines changed Original file line number Diff line number Diff line change
1
+ # Version 0.7.4
2
+
3
+ - Bump ` rand ` dev-dependency to version 0.7.
4
+
1
5
# Version 0.7.3
2
6
3
7
- Fix breakage with nightly feature due to rust-lang/rust #65214 .
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.7.3 "
7
+ version = " 0.7.4 "
8
8
authors = [" The Crossbeam Project Developers" ]
9
9
license = " MIT/Apache-2.0"
10
10
readme = " README.md"
@@ -60,7 +60,7 @@ path = "./crossbeam-utils"
60
60
default-features = false
61
61
62
62
[dev-dependencies ]
63
- rand = " 0.6 "
63
+ rand = " 0.7 "
64
64
65
65
[workspace ]
66
66
members = [
Original file line number Diff line number Diff line change
1
+ # Version 0.4.1
2
+
3
+ - Bump ` rand ` dev-dependency to version 0.7.
4
+ - Avoid time drift in ` channel::tick ` . (#456 )
5
+ - Fix unsoundness issues by adopting ` MaybeUninit ` . (#458 )
6
+
1
7
# Version 0.4.0
2
8
3
9
- Bump the minimum required version to 1.28.
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name = "crossbeam-channel"
4
4
# - Update CHANGELOG.md
5
5
# - Update README.md
6
6
# - Create "crossbeam-channel-X.Y.Z" git tag
7
- version = " 0.4.0 "
7
+ version = " 0.4.1 "
8
8
authors = [" The Crossbeam Project Developers" ]
9
9
license = " MIT/Apache-2.0 AND BSD-2-Clause"
10
10
readme = " README.md"
@@ -24,5 +24,5 @@ path = "../crossbeam-utils"
24
24
25
25
[dev-dependencies ]
26
26
num_cpus = " 1.10.0"
27
- rand = " 0.6 "
27
+ rand = " 0.7 "
28
28
signal-hook = " 0.1.5"
Original file line number Diff line number Diff line change
1
+ # Version 0.7.3
2
+
3
+ - Bump ` rand ` dev-dependency to version 0.7.
4
+ - Stop stealing from the same deque. (#448 )
5
+ - Fix unsoundness issues by adopting ` MaybeUninit ` . (#458 )
6
+
1
7
# Version 0.7.2
2
8
3
9
- Bump ` crossbeam-epoch ` to ` 0.8 ` .
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name = "crossbeam-deque"
4
4
# - Update CHANGELOG.md
5
5
# - Update README.md
6
6
# - Create "crossbeam-deque-X.Y.Z" git tag
7
- version = " 0.7.2 "
7
+ version = " 0.7.3 "
8
8
authors = [" The Crossbeam Project Developers" ]
9
9
license = " MIT/Apache-2.0"
10
10
readme = " README.md"
@@ -27,4 +27,4 @@ version = "0.7"
27
27
path = " ../crossbeam-utils"
28
28
29
29
[dev-dependencies ]
30
- rand = " 0.6 "
30
+ rand = " 0.7 "
Original file line number Diff line number Diff line change
1
+ # Version 0.8.1
2
+
3
+ - Bump ` rand ` dev-dependency to version 0.7.
4
+ - Bump ` autocfg ` dependency to version 1.0. (#460 )
5
+ - Reduce stall in list iteration. (#376 )
6
+ - Stop stealing from the same deque. (#448 )
7
+ - Fix unsoundness issues by adopting ` MaybeUninit ` . (#458 )
8
+ - Fix use-after-free in lock-free queue. (#466 )
9
+
1
10
# Version 0.8.0
2
11
3
12
- Bump the minimum required version to 1.28.
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.8.0 "
7
+ version = " 0.8.1 "
8
8
authors = [" The Crossbeam Project Developers" ]
9
9
license = " MIT/Apache-2.0"
10
10
readme = " README.md"
@@ -44,4 +44,4 @@ default-features = false
44
44
autocfg = " 1"
45
45
46
46
[dev-dependencies ]
47
- rand = " 0.6 "
47
+ rand = " 0.7 "
Original file line number Diff line number Diff line change
1
+ # Version 0.2.2
2
+
3
+ - Bump ` rand ` dev-dependency to version 0.7.
4
+ - Fix unsoundness issues by adopting ` MaybeUninit ` . (#458 )
5
+
1
6
# Version 0.2.1
2
7
3
8
- Add ` no_std ` support.
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.2.1 "
7
+ version = " 0.2.2 "
8
8
authors = [" The Crossbeam Project Developers" ]
9
9
license = " MIT/Apache-2.0 AND BSD-2-Clause"
10
10
readme = " README.md"
@@ -30,4 +30,4 @@ path = "../crossbeam-utils"
30
30
default-features = false
31
31
32
32
[dev-dependencies ]
33
- rand = " 0.6 "
33
+ rand = " 0.7 "
You can’t perform that action at this time.
0 commit comments