diff --git a/CHANGELOG.md b/CHANGELOG.md index 32b17fc3..59e2092c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog + +## [[1.1.1-0.12.0](https://github.com/Finschia/wasmvm/compare/v1.1.1-0.11.6...1.1.1-0.12.0)] - 2024-02-13 + +### Changes +* update imported cosmwasm ([#140](https://github.com/Finschia/wasmvm/pull/140)) + +### Fixes +* fix bot login name ([#134](https://github.com/Finschia/wasmvm/pull/134)) + ## [[1.1.1-0.11.6](https://github.com/Finschia/wasmvm/compare/v1.1.1+0.11.5...v1.1.1-0.11.6)] - 2023-10-18 ### Changes * revert: use pre-release versioning and set version to 1.1.1-0.11.6 ([#130](https://github.com/Finschia/wasmvm/pull/130)) diff --git a/lib_test.go b/lib_test.go index 80f04163..54eadf46 100644 --- a/lib_test.go +++ b/lib_test.go @@ -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.6", version) + require.Equal(t, "1.1.1-0.12.0", version) } diff --git a/libwasmvm/Cargo.lock b/libwasmvm/Cargo.lock index b5253563..d3d3fc96 100644 --- a/libwasmvm/Cargo.lock +++ b/libwasmvm/Cargo.lock @@ -1942,7 +1942,7 @@ checksum = "718ed7c55c2add6548cca3ddd6383d738cd73b892df400e96b9aa876f0141d7a" [[package]] name = "wasmvm" -version = "1.1.1-0.11.6" +version = "1.1.1-0.12.0" dependencies = [ "cbindgen", "cosmwasm-std", diff --git a/libwasmvm/Cargo.toml b/libwasmvm/Cargo.toml index 5ecd6626..3d773987 100644 --- a/libwasmvm/Cargo.toml +++ b/libwasmvm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmvm" -version = "1.1.1-0.11.6" +version = "1.1.1-0.12.0" publish = false authors = ["Finschia Foundation"] edition = "2021"