diff --git a/CHANGELOG.md b/CHANGELOG.md index 91fcc1d0..89414170 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # 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. + ## [[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 diff --git a/internal/api/libwasmvm.dylib b/internal/api/libwasmvm.dylib index 5baf73ce..19e6422e 100755 Binary files a/internal/api/libwasmvm.dylib and b/internal/api/libwasmvm.dylib differ diff --git a/lib_test.go b/lib_test.go index 5fcff369..b85cc1d3 100644 --- a/lib_test.go +++ b/lib_test.go @@ -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, version, "1.1.1-0.11.2") +} diff --git a/libwasmvm/Cargo.lock b/libwasmvm/Cargo.lock index acdece39..745339a2 100644 --- a/libwasmvm/Cargo.lock +++ b/libwasmvm/Cargo.lock @@ -1942,7 +1942,7 @@ checksum = "718ed7c55c2add6548cca3ddd6383d738cd73b892df400e96b9aa876f0141d7a" [[package]] name = "wasmvm" -version = "1.1.1-0.11.1" +version = "1.1.1-0.11.2" dependencies = [ "cbindgen", "cosmwasm-std", diff --git a/libwasmvm/Cargo.toml b/libwasmvm/Cargo.toml index 7c51528e..8f209f32 100644 --- a/libwasmvm/Cargo.toml +++ b/libwasmvm/Cargo.toml @@ -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"