Compare commits

...

6 Commits

Author SHA1 Message Date
Taiki Endo
65835784ac Release 2.47.32 2025-01-31 14:32:14 +09:00
Taiki Endo
01f3d2d227 Update typos@latest to 1.29.5 2025-01-31 09:36:13 +09:00
Taiki Endo
76a1fec160 Release 2.47.31 2025-01-30 14:14:31 +09:00
Taiki Endo
78b9ec82a6 Update changelog 2025-01-30 14:14:11 +09:00
Taiki Endo
be22d29d34 Fix clippy::unnecessary_semicolon warning
```
error: unnecessary semicolon
   --> tools/codegen/src/main.rs:251:10
    |
251 |         };
    |          ^ help: remove
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_semicolon
    = note: `-D clippy::unnecessary-semicolon` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(clippy::unnecessary_semicolon)]`
```
2025-01-30 14:03:36 +09:00
Taiki Endo
e466aa8e34 Update wash manifest 2025-01-30 06:14:20 +09:00
4 changed files with 37 additions and 9 deletions

View File

@@ -10,6 +10,14 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
## [Unreleased]
## [2.47.32] - 2025-01-31
- Update `typos@latest` to 1.29.5.
## [2.47.31] - 2025-01-30
- Fix checksum error with `wash@0.38.0` on macOS. (They rebuilt binaries for some reason.)
## [2.47.30] - 2025-01-28
- Support `cargo-cyclonedx` on x86_64 Linux (musl).
@@ -3430,7 +3438,9 @@ Note: This release is considered a breaking change because installing on version
Initial release
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.47.30...HEAD
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.47.32...HEAD
[2.47.32]: https://github.com/taiki-e/install-action/compare/v2.47.31...v2.47.32
[2.47.31]: https://github.com/taiki-e/install-action/compare/v2.47.30...v2.47.31
[2.47.30]: https://github.com/taiki-e/install-action/compare/v2.47.29...v2.47.30
[2.47.29]: https://github.com/taiki-e/install-action/compare/v2.47.28...v2.47.29
[2.47.28]: https://github.com/taiki-e/install-action/compare/v2.47.27...v2.47.28

24
manifests/typos.json generated
View File

@@ -16,13 +16,31 @@
},
"license_markdown": "[MIT](https://github.com/crate-ci/typos/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/crate-ci/typos/blob/master/LICENSE-APACHE)",
"latest": {
"version": "1.29.4"
"version": "1.29.5"
},
"1": {
"version": "1.29.4"
"version": "1.29.5"
},
"1.29": {
"version": "1.29.4"
"version": "1.29.5"
},
"1.29.5": {
"x86_64_linux_musl": {
"etag": "0x8DD417A6CB2709D",
"checksum": "e4101f822065efd864d09e1c684038cfec8b2805039ba8e1d8e911d1386eac46"
},
"x86_64_macos": {
"etag": "0x8DD417ACDB64ACA",
"checksum": "b2204510baaeb8e7186155c7b38d0ffc146d75e08dd14d300d887a87a4d30669"
},
"x86_64_windows": {
"etag": "0x8DD417AC3813FC9",
"checksum": "804d887c804b13ff26ab46677eb534fc912538c59c049ebaffe133e7f0e70456"
},
"aarch64_macos": {
"etag": "0x8DD417AD33699BA",
"checksum": "ef9eb9a9ec7cfeaba3909b154cc01edcbee4b5c370acd6b70508cd4d4d19c20c"
}
},
"1.29.4": {
"x86_64_linux_musl": {

8
manifests/wash.json generated
View File

@@ -30,8 +30,8 @@
"checksum": "8bba2463f4e121fdbbebc4046aabe1ade54aa3bd72ba70a57ad4b0e0e657bec2"
},
"x86_64_macos": {
"etag": "0x8DD3EEC2BF542B2",
"checksum": "edec0fa45d5ed437322d2813714b5b268d3882bf5ba93f857eefef26f068037b"
"etag": "0x8DD40984BD1ED53",
"checksum": "68b167bbadf17c3807f5b09d7b16287f543f4dc36557f998c307856c09d3aabb"
},
"x86_64_windows": {
"etag": "0x8DD3EEC2C069451",
@@ -42,8 +42,8 @@
"checksum": "bab4fad652eaa9bb1e890daa0478ec223aaf448fb72eb00e59014034a3bca345"
},
"aarch64_macos": {
"etag": "0x8DD3EEC2BD97591",
"checksum": "c2d0443264d064c3f975809e945d19fb4180a3a1d21944e43ea261f7c3050450"
"etag": "0x8DD40983E271249",
"checksum": "7fdac7caa9eb3ce8f54447d2e35b37f578555de3ab39b26b59b08eb59e01e4cb"
}
},
"0.37": {

View File

@@ -248,7 +248,7 @@ fn main() -> Result<()> {
if skip_existing_manifest_versions && existing_manifest.is_some() {
eprintln!("Skipping {semver_version} already in manifest");
continue;
};
}
let mut download_info = BTreeMap::new();
let mut pubkey = None;