diff --git a/Cargo.lock b/Cargo.lock index dd98de1..752ff57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -525,7 +525,7 @@ checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" [[package]] name = "milky_way" -version = "0.4.19" +version = "0.4.20" dependencies = [ "cosmwasm-std", "schemars", @@ -855,7 +855,7 @@ dependencies = [ [[package]] name = "staking" -version = "0.4.19" +version = "0.4.20" dependencies = [ "bech32", "cosmwasm-schema", @@ -934,7 +934,7 @@ dependencies = [ [[package]] name = "treasury" -version = "0.1.0" +version = "0.4.20" dependencies = [ "bech32", "cosmwasm-schema", diff --git a/Cargo.toml b/Cargo.toml index e450a3b..3839e2c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["contracts/*", "packages/*"] resolver = "2" [workspace.package] -version = "0.4.19" +version = "0.4.20" authors = ["Decento Labs"] edition = "2021" rust-version = "1.68.0" diff --git a/contracts/treasury/Cargo.toml b/contracts/treasury/Cargo.toml index efed8b7..44cc754 100644 --- a/contracts/treasury/Cargo.toml +++ b/contracts/treasury/Cargo.toml @@ -1,8 +1,14 @@ [package] name = "treasury" -version = "0.1.0" -authors.workspace = true -edition.workspace = true +version = { workspace = true } +rust-version = { workspace = true } +authors = { workspace = true } +edition = { workspace = true } +license = { workspace = true } +homepage = { workspace = true } +repository = { workspace = true } +documentation = { workspace = true } +keywords = { workspace = true } exclude = [ # Those files are rust-optimizer artifacts. You might want to commit them for convenience but they should not be part of the source code publication. diff --git a/contracts/treasury/src/msg.rs b/contracts/treasury/src/msg.rs index 172d73b..4d5a90e 100644 --- a/contracts/treasury/src/msg.rs +++ b/contracts/treasury/src/msg.rs @@ -70,4 +70,4 @@ pub struct ConfigResponse { } #[cw_serde] -pub enum MigrateMsg {} +pub struct MigrateMsg {}