codegen: cargo-spellcheck now provides AArch64 Linux/Windows binaries

This commit is contained in:
Taiki Endo
2026-05-03 06:20:16 +09:00
parent b5fddbb536
commit b06c9cba54
2 changed files with 10 additions and 3 deletions

View File

@@ -10,6 +10,8 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
## [Unreleased]
- Support `cargo-spellcheck` on AArch64 Linux/Windows.
## [2.75.29] - 2026-05-02
- Update `syft@latest` to 1.44.0.

View File

@@ -3,12 +3,17 @@
"license_markdown": "[LGPLv2.1](https://github.com/drahnr/cargo-spellcheck/blob/master/LICENSE-LGPL)",
"tag_prefix": "v",
"rust_crate": "${package}",
"asset_name": "${package}-v${version}-${rust_target}",
"asset_name": "${package}-v${version}-${rust_target}${exe}",
"version_range": ">= 0.13",
"platform": {
"x86_64_linux_gnu": {},
"x86_64_windows": {
"asset_name": "${package}-v${version}-x86_64-pc-windows-gnu.exe"
}
"asset_name": [
"${package}-v${version}-${rust_target}${exe}",
"${package}-v${version}-x86_64-pc-windows-gnu${exe}"
]
},
"aarch64_linux_gnu": {},
"aarch64_windows": {}
}
}