diff --git a/CHANGELOG.md b/CHANGELOG.md index 653e694a..78aebed4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/tools/codegen/base/cargo-spellcheck.json b/tools/codegen/base/cargo-spellcheck.json index c946bf39..9c70fe83 100644 --- a/tools/codegen/base/cargo-spellcheck.json +++ b/tools/codegen/base/cargo-spellcheck.json @@ -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": {} } }