File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ 1.3.7] - 2023-01-31
11
+
12
+ ### Fixed
13
+
14
+ * Disable the stable access to the sparse registry.
15
+ Setting the value causes problem on version before stabilization, e.g., 1.67.
16
+ For example, "cargo add" fails.
17
+
10
18
## [ 1.3.6] - 2023-01-31
11
19
12
20
### Fixed
Original file line number Diff line number Diff line change @@ -63,11 +63,13 @@ runs:
63
63
echo "RUST_BACKTRACE=short" >> $GITHUB_ENV
64
64
echo "RUSTFLAGS=-D warnings" >> $GITHUB_ENV
65
65
# Enable faster sparse index on nightly
66
+ # The value is ignored on stable and causes no problems
66
67
# https://internals.rust-lang.org/t/call-for-testing-cargo-sparse-registry/16862
67
68
echo "CARGO_UNSTABLE_SPARSE_REGISTRY=true" >> $GITHUB_ENV
68
69
# Enable sparse index after stabilization
70
+ # This causes warnings on stable 1.67, e.g., when using "cargo add"
69
71
# https://github.com/rust-lang/cargo/pull/11224
70
- echo "CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse" >> $GITHUB_ENV
72
+ # echo "CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse" >> $GITHUB_ENV
71
73
shell : bash
72
74
- name : " Install Rust Problem Matcher"
73
75
run : echo "::add-matcher::${{ github.action_path }}/rust.json"
You can’t perform that action at this time.
0 commit comments