mirror of
https://github.com/taiki-e/install-action.git
synced 2026-05-02 03:10:28 +00:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0e09747a63 | ||
|
|
1856fd6ff0 | ||
|
|
ed4255be07 | ||
|
|
3c3a266059 | ||
|
|
e814402cd9 | ||
|
|
e34e0638e2 | ||
|
|
bc308e7d8f | ||
|
|
26176d8d69 | ||
|
|
ec01b5f325 |
1
.github/.cspell/project-dictionary.txt
vendored
1
.github/.cspell/project-dictionary.txt
vendored
@@ -5,6 +5,7 @@ callgrind
|
||||
coreutils
|
||||
cyclonedx
|
||||
cygdrive
|
||||
deadlinks
|
||||
deepsource
|
||||
distro
|
||||
doas
|
||||
|
||||
19
.github/workflows/release.yml
vendored
19
.github/workflows/release.yml
vendored
@@ -7,6 +7,7 @@ on:
|
||||
push:
|
||||
tags:
|
||||
- v[0-9]+.[0-9]+.*
|
||||
- install-action-manifest-schema-[0-9]+.[0-9]+.*
|
||||
|
||||
defaults:
|
||||
run:
|
||||
@@ -14,11 +15,12 @@ defaults:
|
||||
|
||||
jobs:
|
||||
create-release:
|
||||
if: github.repository_owner == 'taiki-e'
|
||||
if: github.repository_owner == 'taiki-e' && !startsWith(github.ref_name, 'install-action-manifest-schema-')
|
||||
runs-on: ubuntu-latest
|
||||
timeout-minutes: 60
|
||||
environment: release
|
||||
permissions:
|
||||
contents: write
|
||||
contents: write # for taiki-e/create-gh-release-action
|
||||
steps:
|
||||
- uses: taiki-e/checkout-action@v1
|
||||
- uses: taiki-e/create-gh-release-action@v1
|
||||
@@ -27,3 +29,16 @@ jobs:
|
||||
title: $version
|
||||
branch: 'main|v[0-9]+'
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
create-release-manifest-schema:
|
||||
if: github.repository_owner == 'taiki-e' && startsWith(github.ref_name, 'install-action-manifest-schema-')
|
||||
uses: taiki-e/github-actions/.github/workflows/create-release.yml@main
|
||||
with:
|
||||
crates: tools/manifest-schema
|
||||
changelog: tools/manifest-schema/CHANGELOG.md
|
||||
title: $prefix $version
|
||||
prefix: install-action-manifest-schema
|
||||
permissions:
|
||||
contents: write # for taiki-e/create-gh-release-action
|
||||
id-token: write # for rust-lang/crates-io-auth-action
|
||||
secrets: inherit
|
||||
|
||||
22
CHANGELOG.md
22
CHANGELOG.md
@@ -10,6 +10,18 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [2.62.0] - 2025-09-21
|
||||
|
||||
- Support `cargo-deadlinks` ([#1161](https://github.com/taiki-e/install-action/pull/1161), thanks @BenjaminBrienen)
|
||||
|
||||
## [2.61.13] - 2025-09-21
|
||||
|
||||
- Update `cargo-semver-checks@latest` to 0.44.0.
|
||||
|
||||
- Update `mise@latest` to 2025.9.14.
|
||||
|
||||
- Update `wasmtime@latest` to 37.0.0.
|
||||
|
||||
## [2.61.12] - 2025-09-20
|
||||
|
||||
- Update `parse-changelog@latest` to 0.6.14.
|
||||
@@ -92,11 +104,11 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
|
||||
|
||||
## [2.61.0] - 2025-09-10
|
||||
|
||||
- Add `uv`. ([#1138](https://github.com/taiki-e/install-action/pull/1138), thanks @jayvdb)
|
||||
- Support `uv`. ([#1138](https://github.com/taiki-e/install-action/pull/1138), thanks @jayvdb)
|
||||
|
||||
- Add `mise` ([#1137](https://github.com/taiki-e/install-action/pull/1137), thanks @jayvdb)
|
||||
- Support `mise` ([#1137](https://github.com/taiki-e/install-action/pull/1137), thanks @jayvdb)
|
||||
|
||||
- Add `ubi` ([#1135](https://github.com/taiki-e/install-action/pull/1135), thanks @jayvdb)
|
||||
- Support `ubi` ([#1135](https://github.com/taiki-e/install-action/pull/1135), thanks @jayvdb)
|
||||
|
||||
- Update `coreutils@latest` to 0.2.2.
|
||||
|
||||
@@ -4533,7 +4545,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.61.12...HEAD
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/v2.62.0...HEAD
|
||||
[2.62.0]: https://github.com/taiki-e/install-action/compare/v2.61.13...v2.62.0
|
||||
[2.61.13]: https://github.com/taiki-e/install-action/compare/v2.61.12...v2.61.13
|
||||
[2.61.12]: https://github.com/taiki-e/install-action/compare/v2.61.11...v2.61.12
|
||||
[2.61.11]: https://github.com/taiki-e/install-action/compare/v2.61.10...v2.61.11
|
||||
[2.61.10]: https://github.com/taiki-e/install-action/compare/v2.61.9...v2.61.10
|
||||
|
||||
1
TOOLS.md
1
TOOLS.md
@@ -17,6 +17,7 @@ See the [Supported tools section in README.md](README.md#supported-tools) for ho
|
||||
| [**cargo-binstall**](https://github.com/cargo-bins/cargo-binstall) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/cargo-bins/cargo-binstall/releases) | Linux, macOS, Windows | [GPL-3.0](https://github.com/cargo-bins/cargo-binstall/blob/HEAD/crates/bin/LICENSE) |
|
||||
| [**cargo-careful**](https://github.com/RalfJung/cargo-careful) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/RalfJung/cargo-careful/releases) | Linux, macOS, Windows | [MIT](https://github.com/RalfJung/cargo-careful/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/RalfJung/cargo-careful/blob/master/LICENSE-APACHE) |
|
||||
| [**cargo-cyclonedx**](https://github.com/CycloneDX/cyclonedx-rust-cargo) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/CycloneDX/cyclonedx-rust-cargo/releases) | Linux, macOS, Windows | [Apache-2.0](https://github.com/CycloneDX/cyclonedx-rust-cargo/blob/main/LICENSE) |
|
||||
| [**cargo-deadlinks**](https://github.com/deadlinks/cargo-deadlinks) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/deadlinks/cargo-deadlinks/releases) | Linux, macOS, Windows | [MIT](https://github.com/deadlinks/cargo-deadlinks/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/deadlinks/cargo-deadlinks/blob/master/LICENSE-APACHE) |
|
||||
| [**cargo-deny**](https://github.com/EmbarkStudios/cargo-deny) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/EmbarkStudios/cargo-deny/releases) | Linux, macOS, Windows | [MIT](https://github.com/EmbarkStudios/cargo-deny/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/EmbarkStudios/cargo-deny/blob/main/LICENSE-APACHE) |
|
||||
| [**cargo-dinghy**](https://github.com/sonos/dinghy) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/sonos/dinghy/releases) | Linux, macOS | [MIT](https://github.com/sonos/dinghy/blob/main/LICENSE-MIT) OR [Apache-2.0](https://github.com/sonos/dinghy/blob/main/LICENSE-APACHE) |
|
||||
| [**cargo-export**](https://github.com/bazhenov/cargo-export) | `$CARGO_HOME/bin` | [GitHub Releases](https://github.com/bazhenov/cargo-export/releases) | Linux, macOS, Windows | [MIT](https://github.com/bazhenov/cargo-export/blob/master/LICENSE) |
|
||||
|
||||
142
manifests/cargo-deadlinks.json
generated
Normal file
142
manifests/cargo-deadlinks.json
generated
Normal file
@@ -0,0 +1,142 @@
|
||||
{
|
||||
"rust_crate": "cargo-deadlinks",
|
||||
"template": {
|
||||
"x86_64_linux_musl": {
|
||||
"url": "https://github.com/deadlinks/cargo-deadlinks/releases/download/${version}/cargo-deadlinks-linux",
|
||||
"bin": "cargo-deadlinks"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"url": "https://github.com/deadlinks/cargo-deadlinks/releases/download/${version}/cargo-deadlinks-macos",
|
||||
"bin": "cargo-deadlinks"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"url": "https://github.com/deadlinks/cargo-deadlinks/releases/download/${version}/cargo-deadlinks-windows",
|
||||
"bin": "cargo-deadlinks"
|
||||
}
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/deadlinks/cargo-deadlinks/blob/master/LICENSE-MIT) OR [Apache-2.0](https://github.com/deadlinks/cargo-deadlinks/blob/master/LICENSE-APACHE)",
|
||||
"latest": {
|
||||
"version": "0.8.1"
|
||||
},
|
||||
"0.8": {
|
||||
"version": "0.8.1"
|
||||
},
|
||||
"0.8.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9BA04AE1969C6",
|
||||
"checksum": "e7a91627a0c7ca6dc13acacdf919d42c5e8f8b83335e1cef40099033418e5775"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9BA04ADFB85E6",
|
||||
"checksum": "59b62815867394d063a6fc9b790a51341cf55d0ecc0cb67c771a09f1b6d86783"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9BA04B39B217B",
|
||||
"checksum": "e739cad916e877f4c93c43e163a09c35b5d3af63dede917b5630226049b1f4f3"
|
||||
}
|
||||
},
|
||||
"0.8.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9BA04B6EDEED6",
|
||||
"checksum": "2f5d8afb113bab4057f2a19a672ee64675b0c3bce7157f6a7a371662fa20c3e9"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9BA04A4014970",
|
||||
"checksum": "ed1c6f3f2bca18d62d0df547ce512819e85492a132a88f4617c060b66fca9ed0"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9BA04A7B8BD4D",
|
||||
"checksum": "9595d878b7c6e8e432dbe879abc22a3b7c5c669660e57fd69c808864cbece832"
|
||||
}
|
||||
},
|
||||
"0.7": {
|
||||
"version": "0.7.2"
|
||||
},
|
||||
"0.7.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9BA04A4EAC3FF",
|
||||
"checksum": "775678a8958978792d86ca5ea84eed067287e0b542689d0e225b2f04068cc4e7"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9BA04A77AABED",
|
||||
"checksum": "fb3a71111e08ce485cca45ab383f4314d73ee300fc7c51f31ac706f1be5c04b8"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9BA04B256C2F5",
|
||||
"checksum": "4e51c0ca562c37297e1a61ab596ae36d2ecdbc4a2e35df054f4f76b45d31ea1f"
|
||||
}
|
||||
},
|
||||
"0.7.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9BA04B278EBFD",
|
||||
"checksum": "23eb7c8f172e8208243d44e53c347ba7ffdc5316caf530454ae5458176b6c0c5"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9BA04AC1EA728",
|
||||
"checksum": "4e26562febe0668379030d74a6d1ae70284b4895fc7fe2e341e9e8d600c0cb4c"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9BA04A81D15BE",
|
||||
"checksum": "18b99c056a1f531df4ad68ba8f5a312f2514ce4bdf9abfa5f4d0267ffa3e62f8"
|
||||
}
|
||||
},
|
||||
"0.7.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9BA04AFCCA699",
|
||||
"checksum": "68e78a562d7a97422d24494d7d0befd2ba57cee7acdba6817fe759b9b57351ea"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9BA04AA722042",
|
||||
"checksum": "4aeb830af22fe5ca9d71f36b374d03a5f407881ca1b323afc96fdeba562da3b7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9BA04A299B0A2",
|
||||
"checksum": "baf9d4643ee52690cebb2021a7078828769b03fcc302ddff2eacf39b16245491"
|
||||
}
|
||||
},
|
||||
"0.6": {
|
||||
"version": "0.6.2"
|
||||
},
|
||||
"0.6.2": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9BA04B58914BD",
|
||||
"checksum": "6ae09c739f3cde7218964d1350546aa09583e70c14c3d9cf3f3429d6dc79605e"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9BA04A2D79AF1",
|
||||
"checksum": "49412e21e1d9da1f48dd013c3f65aaeb7afce2d72a28b1b66d9a4ac880cdd237"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9BA04A3B382F2",
|
||||
"checksum": "95c8905e32ce32821f38c161587cedc32d445afae92f325abf6dd874ad06f781"
|
||||
}
|
||||
},
|
||||
"0.6.1": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9BA04A3BCA955",
|
||||
"checksum": "3f91dfa4f7bd3ec7402312490729b78db090c4eb8f300f1dc02f09ce454ff04a"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9BA04B1BD5882",
|
||||
"checksum": "c6bbdf55f70bc3b3de6c0e14661b53a3aa89caca888c8417ccc9fa29f2e76ff7"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9BA04B1DF5A80",
|
||||
"checksum": "281b798882ba7ba5beddca349ee832a73b87054ec1dfc526745db8915f51d4d7"
|
||||
}
|
||||
},
|
||||
"0.6.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8D9BA04AF5D532D",
|
||||
"checksum": "35504018d645314c8a5e6099d8ae788dcf2bfebdb6876a3349ded95d3656bfc0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8D9BA04A51CC930",
|
||||
"checksum": "9e5b558709379032bd5ab434630a1eb1a358c39c6027d5ae1738fa99fc1e814a"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8D9BA04AC976F00",
|
||||
"checksum": "91908baf3650b41f2b8f1a3f9a506cd79fb4cb316a2349df97f2b7ec74e6f639"
|
||||
}
|
||||
}
|
||||
}
|
||||
27
manifests/cargo-semver-checks.json
generated
27
manifests/cargo-semver-checks.json
generated
@@ -19,7 +19,32 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0](https://github.com/obi1kenobi/cargo-semver-checks/blob/main/LICENSE-APACHE) OR [MIT](https://github.com/obi1kenobi/cargo-semver-checks/blob/main/LICENSE-MIT)",
|
||||
"latest": {
|
||||
"version": "0.43.0"
|
||||
"version": "0.44.0"
|
||||
},
|
||||
"0.44": {
|
||||
"version": "0.44.0"
|
||||
},
|
||||
"0.44.0": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DDF8AF99E0D0D3",
|
||||
"checksum": "7597bb67899fb18a110033df1c78f26e15fba0686f5863f08f13a664f353b4a0"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DDF8AF7E5BB3FE",
|
||||
"checksum": "ac01eefeec5354ab2a89d5121a97356ae969dc00a07cc907918f3531e8558799"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DDF8B0367E3C88",
|
||||
"checksum": "5898759eed36eeba42c47de25682f30fa747571167c2eb71a3054f67471d702d"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DDF8AF9BD58B51",
|
||||
"checksum": "72cebda65824a2d79f16ec5406f85ad637514ece94a50db60589585aa4537753"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DDF8B001DB484F",
|
||||
"checksum": "b99b6e1e7047eae502396f7bdb7e4157bf03b02cb7b959e32801ed159bf86801"
|
||||
}
|
||||
},
|
||||
"0.43": {
|
||||
"version": "0.43.0"
|
||||
|
||||
32
manifests/mise.json
generated
32
manifests/mise.json
generated
@@ -28,13 +28,39 @@
|
||||
},
|
||||
"license_markdown": "[MIT](https://github.com/jdx/mise/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "2025.9.13"
|
||||
"version": "2025.9.14"
|
||||
},
|
||||
"2025": {
|
||||
"version": "2025.9.13"
|
||||
"version": "2025.9.14"
|
||||
},
|
||||
"2025.9": {
|
||||
"version": "2025.9.13"
|
||||
"version": "2025.9.14"
|
||||
},
|
||||
"2025.9.14": {
|
||||
"x86_64_linux_musl": {
|
||||
"etag": "0x8DDF87B0B23BD66",
|
||||
"checksum": "aceb514d70bbef230850d718da4e3faba8d6277fa708bed12d2ec32791fc96dd"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DDF87B0D7F2AC9",
|
||||
"checksum": "3dfe6f4fa24fb19da294454bd350382b12eee4c2c781598677239ce642301969"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DDF87B0E33583B",
|
||||
"checksum": "1ef43467ae580635bd30412ab889b23c4caaf662bef5c8dabc3dfb025e53800b"
|
||||
},
|
||||
"aarch64_linux_musl": {
|
||||
"etag": "0x8DDF87B07CF02E8",
|
||||
"checksum": "5ccdd6a48391f8a2d0f82650f7a90d7ec05f4b1e844ba414b2d23e1c57e5c6d0"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DDF87B0CA10F50",
|
||||
"checksum": "4c20cb0c96e98c017b38acaa570a3ada69b75f8dbb377afa2530ad28dbb60b61"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DDF87B0DA2DE5A",
|
||||
"checksum": "6ce408cdd5b7a75aa8ab719735814cee770e9da1e1800766446651172f618f31"
|
||||
}
|
||||
},
|
||||
"2025.9.13": {
|
||||
"x86_64_linux_musl": {
|
||||
|
||||
42
manifests/wasmtime.json
generated
42
manifests/wasmtime.json
generated
@@ -36,7 +36,47 @@
|
||||
},
|
||||
"license_markdown": "[Apache-2.0 WITH LLVM-exception](https://github.com/bytecodealliance/wasmtime/blob/main/LICENSE)",
|
||||
"latest": {
|
||||
"version": "36.0.2"
|
||||
"version": "37.0.0"
|
||||
},
|
||||
"37": {
|
||||
"version": "37.0.0"
|
||||
},
|
||||
"37.0": {
|
||||
"version": "37.0.0"
|
||||
},
|
||||
"37.0.0": {
|
||||
"x86_64_linux_gnu": {
|
||||
"etag": "0x8DDF8683A867D38",
|
||||
"checksum": "5d83e111f4de32d33c20a272628dd11a529bebeda4627eac51c2cae4ad69966e"
|
||||
},
|
||||
"x86_64_macos": {
|
||||
"etag": "0x8DDF8683B9F8A9C",
|
||||
"checksum": "5f14610b83bef0ee73134096b20fdc3f1f9c862f01caaf792699ee34ed5c5450"
|
||||
},
|
||||
"x86_64_windows": {
|
||||
"etag": "0x8DDF868400CDD8E",
|
||||
"checksum": "4c38b612f03717a4ab7dd822bf7d66ba3cae65e756d5d9d437744f1439fcbdbe"
|
||||
},
|
||||
"aarch64_linux_gnu": {
|
||||
"etag": "0x8DDF8682D9A6DB4",
|
||||
"checksum": "4e244fe4cfdedb1f8d9f9f3fbdeaad4fb7c34eb641777c387d3d251a92d70b2f"
|
||||
},
|
||||
"aarch64_macos": {
|
||||
"etag": "0x8DDF8682E8DCE01",
|
||||
"checksum": "9038bfa025589c7b0393e300bf3860bd80e797bb1df86514626fc08d71a20897"
|
||||
},
|
||||
"aarch64_windows": {
|
||||
"etag": "0x8DDF86830A4695D",
|
||||
"checksum": "0290e536d423a375059cda122313461b1c99157543e6ef80de062c5fe2f96f22"
|
||||
},
|
||||
"riscv64_linux_gnu": {
|
||||
"etag": "0x8DDF86834D67CA0",
|
||||
"checksum": "706a596e703e319a6dd6b95d9726f5d33db18e999d20ac927cd3ddf7b69f98bb"
|
||||
},
|
||||
"s390x_linux_gnu": {
|
||||
"etag": "0x8DDF86835F1D158",
|
||||
"checksum": "f87a6740b8dd784bf1eff06ae6691fe89b0347f25e44df60779e3a90c3db6f72"
|
||||
}
|
||||
},
|
||||
"36": {
|
||||
"version": "36.0.2"
|
||||
|
||||
12
tools/codegen/base/cargo-deadlinks.json
Normal file
12
tools/codegen/base/cargo-deadlinks.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"repository": "https://github.com/deadlinks/cargo-deadlinks",
|
||||
"tag_prefix": "",
|
||||
"rust_crate": "${package}",
|
||||
"asset_name": "${package}-${rust_target_os}",
|
||||
"bin": "${package}",
|
||||
"platform": {
|
||||
"x86_64_linux_musl": {},
|
||||
"x86_64_macos": {},
|
||||
"x86_64_windows": {}
|
||||
}
|
||||
}
|
||||
23
tools/manifest-schema/CHANGELOG.md
Normal file
23
tools/manifest-schema/CHANGELOG.md
Normal file
@@ -0,0 +1,23 @@
|
||||
# Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
This project adheres to [Semantic Versioning](https://semver.org).
|
||||
|
||||
<!--
|
||||
Note: In this file, do not use the hard wrap in the middle of a sentence for compatibility with GitHub comment style markdown rendering.
|
||||
-->
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.1.1] - 2025-09-20
|
||||
|
||||
- Add `HostPlatform::{powerpc64le_linux_gnu,powerpc64le_linux_musl,riscv64_linux_gnu,riscv64_linux_musl,s390x_linux_gnu,s390x_linux_musl}` ([#1133](https://github.com/taiki-e/install-action/pull/1133))
|
||||
|
||||
## [0.1.0] - 2025-01-28
|
||||
|
||||
Initial release
|
||||
|
||||
[Unreleased]: https://github.com/taiki-e/install-action/compare/install-action-manifest-schema-0.1.1...HEAD
|
||||
[0.1.1]: https://github.com/taiki-e/install-action/compare/install-action-manifest-schema-0.1.0...install-action-manifest-schema-0.1.1
|
||||
[0.1.0]: https://github.com/taiki-e/install-action/releases/tag/install-action-manifest-schema-0.1.0
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "install-action-manifest-schema"
|
||||
version = "0.1.0"
|
||||
version = "0.1.1"
|
||||
edition = "2021"
|
||||
rust-version = "1.79" # Align to cargo-binstall: https://crates.io/crates/cargo-binstall
|
||||
license = "Apache-2.0 OR MIT"
|
||||
|
||||
Reference in New Issue
Block a user