File tree 7 files changed +23
-5
lines changed
7 files changed +23
-5
lines changed Original file line number Diff line number Diff line change 5
5
// so that mapping to rust standard targets happens correctly.
6
6
fn convert_custom_linux_target ( target : String ) -> String {
7
7
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" ) {
10
10
parts[ 1 ] = "unknown" ;
11
11
} ;
12
12
parts. join ( "-" )
Original file line number Diff line number Diff line change
1
+ # Version 0.9.13
2
+
3
+ - Fix build script bug introduced in 0.9.12. (#932 )
4
+
1
5
# Version 0.9.12
2
6
7
+ ** Note:** This release has been yanked due to regression fixed in 0.9.13.
8
+
3
9
- Update ` memoffset ` to 0.7. (#926 )
4
10
- Improve support for custom targets. (#922 )
5
11
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.12 "
7
+ version = " 0.9.13 "
8
8
edition = " 2018"
9
9
rust-version = " 1.38"
10
10
license = " MIT OR Apache-2.0"
Original file line number Diff line number Diff line change
1
+ # Version 0.3.8
2
+
3
+ - Fix build script bug introduced in 0.3.7. (#932 )
4
+
1
5
# Version 0.3.7
2
6
7
+ ** Note:** This release has been yanked due to regression fixed in 0.3.8.
8
+
3
9
- Improve support for custom targets. (#922 )
4
10
5
11
# Version 0.3.6
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.7 "
7
+ version = " 0.3.8 "
8
8
edition = " 2018"
9
9
rust-version = " 1.38"
10
10
license = " MIT OR Apache-2.0"
Original file line number Diff line number Diff line change
1
+ # Version 0.8.14
2
+
3
+ - Fix build script bug introduced in 0.8.13. (#932 )
4
+
1
5
# Version 0.8.13
2
6
7
+ ** Note:** This release has been yanked due to regression fixed in 0.8.14.
8
+
3
9
- Improve support for custom targets. (#922 )
4
10
5
11
# Version 0.8.12
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.13 "
7
+ version = " 0.8.14 "
8
8
edition = " 2018"
9
9
rust-version = " 1.38"
10
10
license = " MIT OR Apache-2.0"
You can’t perform that action at this time.
0 commit comments