Skip to content

Commit 366276a

Browse files
bors[bot]Cryptex-githubtaiki-e
authored
Merge #933
933: v0.8: Prepare for the next release r=taiki-e a=taiki-e Backports #932 Changes: - crossbeam-epoch 0.9.13 - Fix build script bug introduced in 0.9.12. (#932) - crossbeam-queue 0.3.8 - Fix build script bug introduced in 0.3.7. (#932) - crossbeam-utils 0.8.14 - Fix build script bug introduced in 0.8.13. (#932) Co-authored-by: Cryptex <[email protected]> Co-authored-by: Taiki Endo <[email protected]>
2 parents 44353df + 4c4298a commit 366276a

File tree

7 files changed

+23
-5
lines changed

7 files changed

+23
-5
lines changed

build-common.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// so that mapping to rust standard targets happens correctly.
66
fn convert_custom_linux_target(target: String) -> String {
77
let mut parts: Vec<&str> = target.split('-').collect();
8-
let system = parts[2];
9-
if system == "linux" {
8+
let system = parts.get(2);
9+
if system == Some(&"linux") {
1010
parts[1] = "unknown";
1111
};
1212
parts.join("-")

crossbeam-epoch/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1+
# Version 0.9.13
2+
3+
- Fix build script bug introduced in 0.9.12. (#932)
4+
15
# Version 0.9.12
26

7+
**Note:** This release has been yanked due to regression fixed in 0.9.13.
8+
39
- Update `memoffset` to 0.7. (#926)
410
- Improve support for custom targets. (#922)
511

crossbeam-epoch/Cargo.toml

+1-1
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.12"
7+
version = "0.9.13"
88
edition = "2018"
99
rust-version = "1.38"
1010
license = "MIT OR Apache-2.0"

crossbeam-queue/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1+
# Version 0.3.8
2+
3+
- Fix build script bug introduced in 0.3.7. (#932)
4+
15
# Version 0.3.7
26

7+
**Note:** This release has been yanked due to regression fixed in 0.3.8.
8+
39
- Improve support for custom targets. (#922)
410

511
# Version 0.3.6

crossbeam-queue/Cargo.toml

+1-1
Original file line numberDiff line numberDiff 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.7"
7+
version = "0.3.8"
88
edition = "2018"
99
rust-version = "1.38"
1010
license = "MIT OR Apache-2.0"

crossbeam-utils/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1+
# Version 0.8.14
2+
3+
- Fix build script bug introduced in 0.8.13. (#932)
4+
15
# Version 0.8.13
26

7+
**Note:** This release has been yanked due to regression fixed in 0.8.14.
8+
39
- Improve support for custom targets. (#922)
410

511
# Version 0.8.12

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.13"
7+
version = "0.8.14"
88
edition = "2018"
99
rust-version = "1.38"
1010
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)