File tree 3 files changed +11
-2
lines changed
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 37
37
[toolchain]
38
38
channel = "nightly-2022-09-10"
39
39
components = [ "rustfmt", "rustc-dev" ]
40
- targets = [ "wasm32-unknown-unknown", "thumbv2 -none-eabi" ]
40
+ targets = [ "wasm32-unknown-unknown", "thumbv7m -none-eabi" ]
41
41
profile = "minimal"
42
42
EOF
43
43
shell : bash
Original file line number Diff line number Diff line change @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 1.4.2] - 2023-02-15
11
+
12
+ ### Fixed
13
+
14
+ * Tweak sparse registry version regex to better work with 1.68 nightly versions.
15
+ * Fix command not found issue
16
+
10
17
## [ 1.4.1] - 2023-02-13
11
18
12
19
### Fixed
Original file line number Diff line number Diff line change @@ -131,8 +131,10 @@ runs:
131
131
- name : " Enable cargo sparse registry on stable"
132
132
run : |
133
133
# except on 1.66 and 1.67, on which it is unstable
134
+ # Not all 1.68.0-nightly versions support it either
135
+ # https://github.com/dtolnay/rust-toolchain/pull/69#discussion_r1107268108
134
136
if [[ ! -v CARGO_REGISTRIES_CRATES_IO_PROTOCOL ]]; then
135
- if echo "${{steps.versions.outputs.rustc-version}}" | not grep -q '^rustc 1\.6[67]\.'; then
137
+ if echo "${{steps.versions.outputs.rustc-version}}" | grep --invert --quiet '^rustc \( 1\.6[67]\.\|1\.68\.0-nightly\) '; then
136
138
echo "CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse" >> $GITHUB_ENV
137
139
fi
138
140
fi
You can’t perform that action at this time.
0 commit comments