Skip to content

Commit

Permalink
fix: wrong tag reference (v1.1.1-0.11.2) (#95)
Browse files Browse the repository at this point in the history
* chore: update latest `line/cosmwasm` commit (merged Finschia/cosmwasm#256 PR)

Signed-off-by: zemyblue <zemyblue@gmail.com>

* add library

* add changelog

* ci: add ci test about compiled internal libraries.

Signed-off-by: zemyblue <zemyblue@gmail.com>

---------

Signed-off-by: zemyblue <zemyblue@gmail.com>
  • Loading branch information
zemyblue authored Mar 28, 2023
1 parent 394d81d commit e2ae48a
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/builds_and_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,26 @@ jobs:
- name: Run shellcheck
run: ./devtools/check_shellscript_lint.sh

test_internal_shared_lib:
runs-on: ubuntu-latest
env:
GORACE: "halt_on_error=1"
BUILD_VERSION: $(echo $GITHUB_SHA | cut -c 1-10)
steps:
- name: set up
uses: actions/setup-go@v2
with:
go-version: 1.17
id: go
- name: Checkout
uses: actions/checkout@v2
- name: Go integration tests
run: make test
- name: Go tests with cgo and race condition safety checks
run: make test-safety
- name: Make build-go
run: make build-go

build_shared_library:
runs-on: ubuntu-latest
steps:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog


## [[v1.1.1-0.11.2](https://github.com/line/wasmvm/compare/v1.1.1-0.11.1...v1.1.1-0.11.2)] - 2023-03-13

The functional changes of this version same with v1.1.1-0.11.1, The only difference is that fix the import problem other service (like wasmd and finshia), because I think it seems to be problem to change the v1.1.1-0.11.1 tag commit.

### Fixes
* fix: wrong tag reference (v1.1.1-0.11.2) ([#95](https://github.com/line/wasmvm/pull/95))

## [[v1.1.1-0.11.1](https://github.com/line/wasmvm/compare/v1.1.1-0.11.0...v1.1.1-0.11.1)] - 2023-01-13

### Fixes
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.
6 changes: 6 additions & 0 deletions lib_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -277,3 +277,9 @@ func TestGetMetrics(t *testing.T) {
require.Equal(t, uint64(0), metrics.SizePinnedMemoryCache)
require.InEpsilon(t, 5602873, metrics.SizeMemoryCache, 0.18)
}

func TestLibwasmvmVersion(t *testing.T) {
version, err := LibwasmvmVersion()
require.NoError(t, err)
require.Equal(t, "1.1.1-0.11.2", 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.1"
version = "1.1.1-0.11.2"
publish = false
authors = ["LINE Plus Corporation"]
edition = "2021"
Expand Down

0 comments on commit e2ae48a

Please sign in to comment.