Compare commits

...

3 Commits

Author SHA1 Message Date
Taiki Endo
f4abeafc99 Release 1.0.2 2022-01-06 00:40:44 +09:00
Taiki Endo
0180de5ee1 Update cargo-minimal-versions to 0.1.1 2022-01-06 00:37:50 +09:00
Taiki Endo
008e9ca06e Fix changelog 2022-01-06 00:25:18 +09:00
3 changed files with 11 additions and 6 deletions

View File

@@ -26,14 +26,14 @@ jobs:
- ubuntu-18.04
tool:
- cargo-hack,cargo-llvm-cov,cargo-minimal-versions,parse-changelog,cross,shellcheck,shfmt
- cargo-hack@0.5.9,cargo-llvm-cov@0.1.13,cargo-minimal-versions@0.1.0,parse-changelog@0.4.5,cross@0.2.1,shellcheck@0.8.0,shfmt@3.4.2
- cargo-hack@0.5.10,cargo-llvm-cov@0.1.13,cargo-minimal-versions@0.1.1,parse-changelog@0.4.6,cross@0.2.1,shellcheck@0.8.0,shfmt@3.4.2
include:
- os: macos-10.15
tool: cargo-hack@0.5.9,cargo-llvm-cov@0.1.13,cargo-minimal-versions@0.1.0,parse-changelog@0.4.5,cross@0.2.1,shellcheck@0.8.0,shfmt@3.4.2
tool: cargo-hack@0.5.10,cargo-llvm-cov@0.1.13,cargo-minimal-versions@0.1.1,parse-changelog@0.4.6,cross@0.2.1,shellcheck@0.8.0,shfmt@3.4.2
- os: windows-2019
tool: cargo-hack,cargo-llvm-cov,cargo-minimal-versions,parse-changelog
- os: windows-2019
tool: cargo-hack@0.5.9,cargo-llvm-cov@0.1.13,cargo-minimal-versions@0.1.0,parse-changelog@0.4.5,cross@0.2.1
tool: cargo-hack@0.5.10,cargo-llvm-cov@0.1.13,cargo-minimal-versions@0.1.1,parse-changelog@0.4.6,cross@0.2.1
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2

View File

@@ -10,6 +10,10 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
## [Unreleased]
## [1.0.2] - 2022-01-05
- Update `cargo-minimal-versions@latest` to 0.1.1.
## [1.0.1] - 2022-01-05
- Fix error in cases where the release has been created but the binary has not yet been uploaded.
@@ -18,6 +22,7 @@ Note: In this file, do not use the hard wrap in the middle of a sentence for com
Initial release
[Unreleased]: https://github.com/taiki-e/install-action/compare/v1.0.1...HEAD
[1.0.1]: https://github.com/taiki-e/create-gh-release-action/compare/v1.0.0...v1.0.1
[Unreleased]: https://github.com/taiki-e/install-action/compare/v1.0.2...HEAD
[1.0.2]: https://github.com/taiki-e/install-action/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/taiki-e/install-action/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/taiki-e/install-action/releases/tag/v1.0.0

View File

@@ -61,7 +61,7 @@ for tool in "${tools[@]}"; do
# https://github.com/taiki-e/cargo-llvm-cov/releases
cargo-llvm-cov) latest_version="0.1.13" ;;
# https://github.com/taiki-e/cargo-minimal-versions/releases
cargo-minimal-versions) latest_version="0.1.0" ;;
cargo-minimal-versions) latest_version="0.1.1" ;;
# https://github.com/taiki-e/parse-changelog/releases
parse-changelog) latest_version="0.4.6" ;;
*) exit 1 ;;