diff --git a/CHANGELOG.md b/CHANGELOG.md index 3081b78e..8ec2da64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -91,6 +91,11 @@ and this project adheres to - Cw20 implementation in sylvia - Removed `#[msg(reply)]` +## [0.8.1](https://github.com/CosmWasm/sylvia/compare/sylvia-derive-v0.8.0...sylvia-derive-v0.8.1) - 2023-09-18 + +### Added +- Generate migrate entry point if message defined on contract + ## [0.2.1] - 2022-10-19 This is the first documented and supported implementation. It provides diff --git a/Cargo.lock b/Cargo.lock index ccbe427e..fe130f45 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -823,7 +823,7 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" [[package]] name = "sylvia" -version = "0.8.0" +version = "0.8.1" dependencies = [ "anyhow", "cosmwasm-schema", @@ -842,7 +842,7 @@ dependencies = [ [[package]] name = "sylvia-derive" -version = "0.8.0" +version = "0.8.1" dependencies = [ "convert_case", "proc-macro-crate", diff --git a/Cargo.toml b/Cargo.toml index aeec8ff6..742b7e1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ exclude = ["examples/*"] resolver = "2" [workspace.package] -version = "0.8.0" +version = "0.8.1" [workspace.dependencies] sylvia-derive = { version = "0.8.0", path = "sylvia-derive" }