From 69374097401a6914bd7e7010fb6d850b15ba26ea Mon Sep 17 00:00:00 2001 From: pinosu <95283998+pinosu@users.noreply.github.com> Date: Wed, 7 Jun 2023 16:32:33 +0200 Subject: [PATCH] Update changelog for v0.40.1 release (#1436) * Update changelog for v0.40.1 release * Make lint pass --- CHANGELOG.md | 15 ++++++++++++++- x/wasm/types/test_fixtures.go | 2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfefe8e7..0d308f43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,20 @@ ## [Unreleased](https://github.com/CosmWasm/wasmd/tree/HEAD) -[Full Changelog](https://github.com/CosmWasm/wasmd/compare/v0.40.0...HEAD) +[Full Changelog](https://github.com/CosmWasm/wasmd/compare/v0.40.1...HEAD) + +## [v0.40.1](https://github.com/CosmWasm/wasmd/tree/v0.40.1) (2023-06-06) + +[Full Changelog](https://github.com/CosmWasm/wasmd/compare/v0.40.0...v0.40.1) + +This patch release includes only the wasmvm upgrade to [v1.2.4](https://github.com/CosmWasm/wasmvm/releases/tag/v1.2.4). +It solves some incompatibility problems by improving cache invalidation. See [\#426](https://github.com/CosmWasm/wasmvm/issues/426) + +### Notable changes: +- Upgrade wasmvm to v1.2.4. [\#1430](https://github.com/CosmWasm/wasmd/issues/1430) + +### Migration notes: +- This release does not include any state migrations or breaking changes, therefore a coordinated chain upgrade is not required. ## [v0.40.0](https://github.com/CosmWasm/wasmd/tree/v0.40.0) (2023-05-25) diff --git a/x/wasm/types/test_fixtures.go b/x/wasm/types/test_fixtures.go index e84b61fd..fb93367f 100644 --- a/x/wasm/types/test_fixtures.go +++ b/x/wasm/types/test_fixtures.go @@ -45,7 +45,7 @@ func GenesisFixture(mutators ...func(*GenesisState)) GenesisState { func randBytes(n int) []byte { r := make([]byte, n) - rand.Read(r) + rand.Read(r) //nolint:staticcheck return r }