From 0f3c3ead7e57fd296374e67934bce0c9fb99d0f0 Mon Sep 17 00:00:00 2001 From: TAKASE Ryo Date: Fri, 25 Aug 2023 12:34:34 +0900 Subject: [PATCH] ci: enable ci recognize -rcX version (#125) * ci: enable ci recognize -rcX version * docs: add PRs after v1.1.1-0.11.2 to CHANGELOG --- .github/workflows/release.yml | 4 ++-- CHANGELOG.md | 18 +++++++++++++----- 2 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d24d7ec2..8f73826a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: id: get-package-version working-directory: ./libwasmvm run: | - VERSION=$(cargo tree -i wasmvm | grep -oE "[0-9]+(\.[0-9]+){2}-[0-9]+(\.[0-9]+){2}") + VERSION=$(cargo tree -i wasmvm | grep -oE "[0-9]+(\.[0-9]+){2}-[0-9]+(\.[0-9]+){2}(-[0-9a-zA-Z.]+)*(\+[0-9a-zA-Z.])*") echo ::set-output name=version::v$VERSION push-tag: # if the version does not exist as git tag, push it @@ -52,7 +52,7 @@ jobs: name: Update releases needs: - get-version - - push-tag + - push-tag if: ${{ needs.get-version.outputs.package-version != needs.get-version.outputs.latest-tag }} runs-on: ubuntu-latest permissions: diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ac94a92..8ed9a4af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,15 +1,23 @@ # Changelog -## [Unreleased](https://github.com/Finschia/wasmvm/compare/v1.1.1-0.11.2...HEAD) +## [[v1.1.1-0.11.3-rc1](https://github.com/Finschia/wasmvm/compare/v1.1.1-0.11.2...v1.1.1-0.11.3-rc1)] - 2023-08-24 + +### Changes + +* enable ci recognize -rcX version ([#125](https://github.com/Finschia/wasmvm/pull/125)) +* version bump to 1.1.1-0.11.3-rc1 ([#122](https://github.com/Finschia/wasmvm/pull/122)) +* update golang version to 1.20 ([#118](https://github.com/Finschia/wasmvm/pull/118)) +* replace line modules with Finschia's ([#109](https://github.com/Finschia/wasmvm/pull/109)) ### Features -* feat: Add static build for macos ([#115](https://github.com/Finschia/wasmvm/pull/115)) + +* add codeowners file ([#100](https://github.com/Finschia/wasmvm/pull/100)) ### Fixes -### Changes -* chore: update libwasmvm cargo author ([#112](https://github.com/Finschia/wasmvm/pull/112)) -* build: update golang version to 1.20 ([#118](https://github.com/Finschia/wasmvm/pull/118)) + +* fix a test for rustc 1.68 or later ([#108](https://github.com/Finschia/wasmvm/pull/108)) +* wrong tag reference (v1.1.1-0.11.2) ([#95](https://github.com/Finschia/wasmvm/pull/95)) ## [[v1.1.1-0.11.2](https://github.com/Finschia/wasmvm/compare/v1.1.1-0.11.1...v1.1.1-0.11.2)] - 2023-03-13