Skip to content

Commit

Permalink
ci: enable ci recognize -rcX version (#125)
Browse files Browse the repository at this point in the history
* ci: enable ci recognize -rcX version

* docs: add PRs after v1.1.1-0.11.2 to CHANGELOG
  • Loading branch information
loloicci authored Aug 25, 2023
1 parent cb27bb2 commit 0f3c3ea
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down
18 changes: 13 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 0f3c3ea

Please sign in to comment.