Skip to content

Commit

Permalink
build: bumpup version to 1.1.1-0.11.4-rc1 (#126)
Browse files Browse the repository at this point in the history
* fix: fix how scripts getting version

* build: version bump to 1.1.1-0.11.4-rc1

* docs: update CHANGELOG

* build: build libwasmvm

---------

Co-authored-by: Daisuke Iuchi <42408108+da1suk8@users.noreply.github.com>
  • Loading branch information
loloicci and da1suk8 authored Aug 25, 2023
1 parent 0f3c3ea commit f4e948f
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .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}(-[0-9a-zA-Z.]+)*(\+[0-9a-zA-Z.])*")
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 Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog


## [[1.1.1-0.11.4-rc1](https://github.com/Finschia/wasmvm/compare/v1.1.1-0.11.3-rc1...1.1.1-0.11.4-rc1)] - 2023-08-25
### Changes
* bumpup version to 1.1.1-0.11.4-rc1 ([#126](https://github.com/Finschia/wasmvm/pull/125))

## [[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
Expand Down
2 changes: 1 addition & 1 deletion devtools/set_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if [[ -n "$CHANGES_IN_REPO" ]]; then
fi

NEW="$1"
OLD=$(cargo tree -i wasmvm --manifest-path libwasmvm/Cargo.toml | grep -oE "[0-9]+(\.[0-9]+){2}-[0-9]+(\.[0-9]+){2}")
OLD=$(cargo tree -i wasmvm --manifest-path libwasmvm/Cargo.toml | grep -oE "[0-9]+(\.[0-9]+){2}-[0-9]+(\.[0-9]+){2}(-[0-9a-zA-Z.]+)*(\+[0-9a-zA-Z.\-]+)*")
echo "Updating old version $OLD to new version $NEW ..."

CARGO_TOML="libwasmvm/Cargo.toml"
Expand Down
Binary file modified internal/api/libwasmvm.aarch64.so
Binary file not shown.
Binary file modified internal/api/libwasmvm.dylib
Binary file not shown.
Binary file modified internal/api/libwasmvm.x86_64.so
Binary file not shown.
2 changes: 1 addition & 1 deletion lib_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -281,5 +281,5 @@ func TestGetMetrics(t *testing.T) {
func TestLibwasmvmVersion(t *testing.T) {
version, err := LibwasmvmVersion()
require.NoError(t, err)
require.Equal(t, "1.1.1-0.11.3-rc1", version)
require.Equal(t, "1.1.1-0.11.4-rc1", version)
}
2 changes: 1 addition & 1 deletion libwasmvm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion libwasmvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasmvm"
version = "1.1.1-0.11.3-rc1"
version = "1.1.1-0.11.4-rc1"
publish = false
authors = ["Finschia Foundation"]
edition = "2021"
Expand Down

0 comments on commit f4e948f

Please sign in to comment.