diff --git a/CHANGELOG.md b/CHANGELOG.md index 04df9cd..c8a07ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## v0.2.4 (2024-06-07) + +- Fixed the geenration of some incorrectly formated query responses [#79](https://github.com/srdtrk/go-codegen/pull/79) +- Allow `MigrateMsg` to be an enum [#79](https://github.com/srdtrk/go-codegen/pull/79) +- Bumped go and golangci-lint versions in the autogenerated github actions. [#65](https://github.com/srdtrk/go-codegen/issues/65) and [#68](https://github.com/srdtrk/go-codegen/issues/68) +- Fixed unnecessary override of `contract_test.go`. [#66](https://github.com/srdtrk/go-codegen/issues/66) +- Fixed the use of incorrect package name in `contract_test.go`. [#82](https://github.com/srdtrk/go-codegen/issues/82) + ## v0.2.3 (2024-06-05) - Removed custom gas from StoreCode in auto-generated test suite [#67](https://github.com/srdtrk/go-codegen/issues/67) diff --git a/pkg/types/version.go b/pkg/types/version.go index 70380c3..71be25c 100644 --- a/pkg/types/version.go +++ b/pkg/types/version.go @@ -1,4 +1,4 @@ package types // Version is the current version of the package -const Version = "0.2.3" +const Version = "0.2.4"