From a25e21909576b2515c12c63ed834a9c06a968eb6 Mon Sep 17 00:00:00 2001 From: Mauro Lacy Date: Thu, 22 Sep 2022 09:41:15 +0200 Subject: [PATCH 1/2] Set version: 0.15.1 --- Cargo.lock | 32 ++++++++++---------- contracts/tg4-engagement/Cargo.toml | 10 +++--- contracts/tg4-group/Cargo.toml | 4 +-- contracts/tg4-mixer/Cargo.toml | 12 ++++---- contracts/tg4-stake/Cargo.toml | 10 +++--- contracts/tgrade-community-pool/Cargo.toml | 16 +++++----- contracts/tgrade-gov-reflect/Cargo.toml | 4 +-- contracts/tgrade-validator-voting/Cargo.toml | 20 ++++++------ contracts/tgrade-valset/Cargo.toml | 14 ++++----- contracts/tgrade-vesting-account/Cargo.toml | 8 ++--- packages/bindings-test/Cargo.toml | 4 +-- packages/bindings/Cargo.toml | 2 +- packages/test-utils/Cargo.toml | 4 +-- packages/tg3/Cargo.toml | 6 ++-- packages/tg4/Cargo.toml | 4 +-- packages/utils/Cargo.toml | 6 ++-- packages/voting-contract/Cargo.toml | 14 ++++----- 17 files changed, 85 insertions(+), 85 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 87e1114..079964f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1605,7 +1605,7 @@ dependencies = [ [[package]] name = "tg-bindings" -version = "0.15.0" +version = "0.15.1" dependencies = [ "base64", "cosmwasm-schema", @@ -1618,7 +1618,7 @@ dependencies = [ [[package]] name = "tg-bindings-test" -version = "0.15.0" +version = "0.15.1" dependencies = [ "anyhow", "cosmwasm-std", @@ -1632,7 +1632,7 @@ dependencies = [ [[package]] name = "tg-test-utils" -version = "0.15.0" +version = "0.15.1" dependencies = [ "cosmwasm-std", "tg-voting-contract", @@ -1640,7 +1640,7 @@ dependencies = [ [[package]] name = "tg-utils" -version = "0.15.0" +version = "0.15.1" dependencies = [ "cosmwasm-std", "cw-controllers", @@ -1657,7 +1657,7 @@ dependencies = [ [[package]] name = "tg-voting-contract" -version = "0.15.0" +version = "0.15.1" dependencies = [ "anyhow", "cosmwasm-schema", @@ -1679,7 +1679,7 @@ dependencies = [ [[package]] name = "tg3" -version = "0.15.0" +version = "0.15.1" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1691,7 +1691,7 @@ dependencies = [ [[package]] name = "tg4" -version = "0.15.0" +version = "0.15.1" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1702,7 +1702,7 @@ dependencies = [ [[package]] name = "tg4-engagement" -version = "0.15.0" +version = "0.15.1" dependencies = [ "anyhow", "cosmwasm-schema", @@ -1724,7 +1724,7 @@ dependencies = [ [[package]] name = "tg4-group" -version = "0.15.0" +version = "0.15.1" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1741,7 +1741,7 @@ dependencies = [ [[package]] name = "tg4-mixer" -version = "0.15.0" +version = "0.15.1" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1766,7 +1766,7 @@ dependencies = [ [[package]] name = "tg4-stake" -version = "0.15.0" +version = "0.15.1" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1786,7 +1786,7 @@ dependencies = [ [[package]] name = "tgrade-community-pool" -version = "0.15.0" +version = "0.15.1" dependencies = [ "anyhow", "cosmwasm-schema", @@ -1808,7 +1808,7 @@ dependencies = [ [[package]] name = "tgrade-gov-reflect" -version = "0.15.0" +version = "0.15.1" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1821,7 +1821,7 @@ dependencies = [ [[package]] name = "tgrade-validator-voting" -version = "0.15.0" +version = "0.15.1" dependencies = [ "anyhow", "cosmwasm-schema", @@ -1844,7 +1844,7 @@ dependencies = [ [[package]] name = "tgrade-valset" -version = "0.15.0" +version = "0.15.1" dependencies = [ "anyhow", "assert_matches", @@ -1872,7 +1872,7 @@ dependencies = [ [[package]] name = "tgrade-vesting-account" -version = "0.15.0" +version = "0.15.1" dependencies = [ "anyhow", "assert_matches", diff --git a/contracts/tg4-engagement/Cargo.toml b/contracts/tg4-engagement/Cargo.toml index 35a19e1..ddddaa8 100644 --- a/contracts/tg4-engagement/Cargo.toml +++ b/contracts/tg4-engagement/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg4-engagement" -version = "0.15.0" +version = "0.15.1" authors = ["Ethan Frey "] edition = "2018" description = "Simple TG4 implementation of group membership controlled by an admin" @@ -25,9 +25,9 @@ cw-controllers = "0.15.0" cw-storage-plus = "0.15.0" cw-utils = "0.15.0" cw2 = "0.15.0" -tg-utils = { version = "0.15.0", path = "../../packages/utils" } -tg-bindings = { version = "0.15.0", path = "../../packages/bindings" } -tg4 = { path = "../../packages/tg4", version = "0.15.0" } +tg-utils = { version = "0.15.1", path = "../../packages/utils" } +tg-bindings = { version = "0.15.1", path = "../../packages/bindings" } +tg4 = { path = "../../packages/tg4", version = "0.15.1" } schemars = "0.8" serde = { version = "1.0.103", default-features = false, features = ["derive"] } thiserror = "1.0.21" @@ -37,4 +37,4 @@ anyhow = "1" cosmwasm-schema = "1.1.0" cw-multi-test = "0.15.0" derivative = "2" -tg-bindings-test = { version = "0.15.0", path = "../../packages/bindings-test" } +tg-bindings-test = { version = "0.15.1", path = "../../packages/bindings-test" } diff --git a/contracts/tg4-group/Cargo.toml b/contracts/tg4-group/Cargo.toml index a390a17..b0b5609 100644 --- a/contracts/tg4-group/Cargo.toml +++ b/contracts/tg4-group/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg4-group" -version = "0.15.0" +version = "0.15.1" authors = ["Mauro Lacy "] edition = "2018" description = "Simple tg4 implementation of group membership controlled by admin" @@ -34,7 +34,7 @@ cw-controllers = "0.15.0" cw-storage-plus = "0.15.0" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg4 = { version = "0.15.0", path = "../../packages/tg4" } +tg4 = { version = "0.15.1", path = "../../packages/tg4" } thiserror = { version = "1.0.23" } [dev-dependencies] diff --git a/contracts/tg4-mixer/Cargo.toml b/contracts/tg4-mixer/Cargo.toml index 69d8d90..593f6f3 100644 --- a/contracts/tg4-mixer/Cargo.toml +++ b/contracts/tg4-mixer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg4-mixer" -version = "0.15.0" +version = "0.15.1" authors = ["Ethan Frey "] edition = "2018" description = "TG4 implementation that combines two different groups with a merge function" @@ -33,17 +33,17 @@ rust_decimal_macros = { version = "1.16", default-features = false } thiserror = "1.0.21" schemars = "0.8" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg4 = { path = "../../packages/tg4", version = "0.15.0" } -tg-utils = { path = "../../packages/utils", version = "0.15.0" } -tg-bindings = { path = "../../packages/bindings", version = "0.15.0" } +tg4 = { path = "../../packages/tg4", version = "0.15.1" } +tg-utils = { path = "../../packages/utils", version = "0.15.1" } +tg-bindings = { path = "../../packages/bindings", version = "0.15.1" } [dev-dependencies] cosmwasm-schema = "1.1.0" # bench dependencies cosmwasm-vm = { version = "1.1.0" } cw-multi-test = "0.15.0" -tg4-engagement = { path = "../tg4-engagement", version = "0.15.0", features = ["library"] } -tg4-stake = { path = "../tg4-stake", version = "0.15.0", features = ["library"] } +tg4-engagement = { path = "../tg4-engagement", version = "0.15.1", features = ["library"] } +tg4-stake = { path = "../tg4-stake", version = "0.15.1", features = ["library"] } [[bench]] name = "main" diff --git a/contracts/tg4-stake/Cargo.toml b/contracts/tg4-stake/Cargo.toml index 4df2870..652eed1 100644 --- a/contracts/tg4-stake/Cargo.toml +++ b/contracts/tg4-stake/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg4-stake" -version = "0.15.0" +version = "0.15.1" authors = ["Ethan Frey "] edition = "2018" description = "TG4 implementation of group based on staked tokens" @@ -28,11 +28,11 @@ cw-storage-plus = "0.15.0" itertools = "0.10" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg4 = { path = "../../packages/tg4", version = "0.15.0" } -tg-utils = { path = "../../packages/utils", version = "0.15.0" } -tg-bindings = { path = "../../packages/bindings", version = "0.15.0" } +tg4 = { path = "../../packages/tg4", version = "0.15.1" } +tg-utils = { path = "../../packages/utils", version = "0.15.1" } +tg-bindings = { path = "../../packages/bindings", version = "0.15.1" } thiserror = "1.0.21" [dev-dependencies] cosmwasm-schema = "1.1.0" -tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.0" } +tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.1" } diff --git a/contracts/tgrade-community-pool/Cargo.toml b/contracts/tgrade-community-pool/Cargo.toml index 089bcf1..9d7dca4 100644 --- a/contracts/tgrade-community-pool/Cargo.toml +++ b/contracts/tgrade-community-pool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tgrade-community-pool" -version = "0.15.0" +version = "0.15.1" authors = ["Bartłomiej Kuras "] edition = "2018" description = "Implementing tgrade-community-pool voting contract" @@ -22,16 +22,16 @@ cw-utils = "0.15.0" cw2 = "0.15.0" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } -tg-bindings = { path = "../../packages/bindings", version = "0.15.0" } -tg-utils = { path = "../../packages/utils", version = "0.15.0" } -tg-voting-contract = { version = "0.15.0", path = "../../packages/voting-contract" } -tg3 = { path = "../../packages/tg3", version = "0.15.0" } -tg4-engagement = { path = "../tg4-engagement", version = "0.15.0", features = ["library"] } +tg-bindings = { path = "../../packages/bindings", version = "0.15.1" } +tg-utils = { path = "../../packages/utils", version = "0.15.1" } +tg-voting-contract = { version = "0.15.1", path = "../../packages/voting-contract" } +tg3 = { path = "../../packages/tg3", version = "0.15.1" } +tg4-engagement = { path = "../tg4-engagement", version = "0.15.1", features = ["library"] } thiserror = "1" [dev-dependencies] anyhow = "1" cosmwasm-schema = "1.1.0" cw-multi-test = "0.15.0" -tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.0" } -tg4 = { path = "../../packages/tg4", version = "0.15.0" } +tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.1" } +tg4 = { path = "../../packages/tg4", version = "0.15.1" } diff --git a/contracts/tgrade-gov-reflect/Cargo.toml b/contracts/tgrade-gov-reflect/Cargo.toml index 0b2788e..c06dc8c 100644 --- a/contracts/tgrade-gov-reflect/Cargo.toml +++ b/contracts/tgrade-gov-reflect/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tgrade-gov-reflect" -version = "0.15.0" +version = "0.15.1" authors = ["Ethan Frey "] edition = "2018" description = "Implementing tgrade-gov-reflect voting contract" @@ -28,7 +28,7 @@ cosmwasm-std = "1.1.0" cw-storage-plus = "0.15.0" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg-bindings = { version = "0.15.0", path = "../../packages/bindings" } +tg-bindings = { version = "0.15.1", path = "../../packages/bindings" } thiserror = "1" [dev-dependencies] diff --git a/contracts/tgrade-validator-voting/Cargo.toml b/contracts/tgrade-validator-voting/Cargo.toml index f6e5f27..70725cc 100644 --- a/contracts/tgrade-validator-voting/Cargo.toml +++ b/contracts/tgrade-validator-voting/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tgrade-validator-voting" -version = "0.15.0" +version = "0.15.1" authors = ["Ethan Frey "] edition = "2018" description = "Implementing tgrade-validator-voting" @@ -22,10 +22,10 @@ cw-utils = "0.15.0" cw2 = "0.15.0" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } -tg-bindings = { path = "../../packages/bindings", version = "0.15.0" } -tg-utils = { path = "../../packages/utils", version = "0.15.0" } -tg-voting-contract = { version = "0.15.0", path = "../../packages/voting-contract" } -tg3 = { path = "../../packages/tg3", version = "0.15.0" } +tg-bindings = { path = "../../packages/bindings", version = "0.15.1" } +tg-utils = { path = "../../packages/utils", version = "0.15.1" } +tg-voting-contract = { version = "0.15.1", path = "../../packages/voting-contract" } +tg3 = { path = "../../packages/tg3", version = "0.15.1" } thiserror = "1" [dev-dependencies] @@ -33,8 +33,8 @@ anyhow = "1" cosmwasm-schema = "1.1.0" cw-multi-test = "0.15.0" cw-storage-plus = "0.15.0" -tg-bindings-test = { version = "0.15.0", path = "../../packages/bindings-test" } -tg-utils = { version = "0.15.0", path = "../../packages/utils" } -tg-voting-contract = { version = "0.15.0", path = "../../packages/voting-contract" } -tg4 = { path = "../../packages/tg4", version = "0.15.0" } -tg4-engagement = { path = "../tg4-engagement", version = "0.15.0", features = ["library"] } +tg-bindings-test = { version = "0.15.1", path = "../../packages/bindings-test" } +tg-utils = { version = "0.15.1", path = "../../packages/utils" } +tg-voting-contract = { version = "0.15.1", path = "../../packages/voting-contract" } +tg4 = { path = "../../packages/tg4", version = "0.15.1" } +tg4-engagement = { path = "../tg4-engagement", version = "0.15.1", features = ["library"] } diff --git a/contracts/tgrade-valset/Cargo.toml b/contracts/tgrade-valset/Cargo.toml index 3655eac..ff7b27f 100644 --- a/contracts/tgrade-valset/Cargo.toml +++ b/contracts/tgrade-valset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tgrade-valset" -version = "0.15.0" +version = "0.15.1" authors = ["Ethan Frey "] edition = "2018" description = "Control the validator set based on membership of trusted tg4 contract" @@ -35,9 +35,9 @@ schemars = "0.8" semver = "1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } thiserror = "1.0.21" -tg4 = { path = "../../packages/tg4", version = "0.15.0" } -tg-bindings = { version = "0.15.0", path = "../../packages/bindings" } -tg-utils = { version = "0.15.0", path = "../../packages/utils" } +tg4 = { path = "../../packages/tg4", version = "0.15.1" } +tg-bindings = { version = "0.15.1", path = "../../packages/bindings" } +tg-utils = { version = "0.15.1", path = "../../packages/utils" } # For integration tests ("integration" feature) bech32 = { version = "0.8.1", optional = true } @@ -49,7 +49,7 @@ assert_matches = "1.5" cosmwasm-schema = "1.1.0" cw-multi-test = "0.15.0" derivative = "2" -tg4-engagement = { path = "../tg4-engagement", version = "0.15.0" } -tg4-stake = { path = "../tg4-stake", version = "0.15.0" } +tg4-engagement = { path = "../tg4-engagement", version = "0.15.1" } +tg4-stake = { path = "../tg4-stake", version = "0.15.1" } # we enable multitest feature only for tests -tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.0" } +tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.1" } diff --git a/contracts/tgrade-vesting-account/Cargo.toml b/contracts/tgrade-vesting-account/Cargo.toml index 33f6cb9..50a2e45 100644 --- a/contracts/tgrade-vesting-account/Cargo.toml +++ b/contracts/tgrade-vesting-account/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tgrade-vesting-account" -version = "0.15.0" +version = "0.15.1" authors = ["Jakub Bogucki "] edition = "2018" description = "Vesting Account as a contract" @@ -22,8 +22,8 @@ cw2 = "0.15.0" cw-storage-plus = "0.15.0" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg-bindings = { version = "0.15.0", path = "../../packages/bindings" } -tg-utils = { version = "0.15.0", path = "../../packages/utils" } +tg-bindings = { version = "0.15.1", path = "../../packages/bindings" } +tg-utils = { version = "0.15.1", path = "../../packages/utils" } thiserror = "1" [dev-dependencies] @@ -32,4 +32,4 @@ assert_matches = "1" derivative = "2" cosmwasm-schema = "1.1.0" cw-multi-test = "0.15.0" -tg-bindings-test = { version = "0.15.0", path = "../../packages/bindings-test" } +tg-bindings-test = { version = "0.15.1", path = "../../packages/bindings-test" } diff --git a/packages/bindings-test/Cargo.toml b/packages/bindings-test/Cargo.toml index b6179b7..c2b28d3 100644 --- a/packages/bindings-test/Cargo.toml +++ b/packages/bindings-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg-bindings-test" -version = "0.15.0" +version = "0.15.1" authors = ["Ethan Frey "] edition = "2018" description = "Multitest (and other test helpers) support for Tgrade-specific contracts" @@ -15,5 +15,5 @@ cw-multi-test = "0.15.0" cw-storage-plus = "0.15.0" schemars = "0.8" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg-bindings = { version = "0.15.0", path = "../bindings" } +tg-bindings = { version = "0.15.1", path = "../bindings" } thiserror = "1.0.21" diff --git a/packages/bindings/Cargo.toml b/packages/bindings/Cargo.toml index dfd75f7..728969f 100644 --- a/packages/bindings/Cargo.toml +++ b/packages/bindings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg-bindings" -version = "0.15.0" +version = "0.15.1" authors = ["Ethan Frey "] edition = "2018" description = "Bindings for CustomMsg and CustomQuery for the Tgrade blockchain" diff --git a/packages/test-utils/Cargo.toml b/packages/test-utils/Cargo.toml index 8fa9d09..f55faa3 100644 --- a/packages/test-utils/Cargo.toml +++ b/packages/test-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg-test-utils" -version = "0.15.0" +version = "0.15.1" authors = ["Jakub Bogucki "] edition = "2018" description = "Utilities used in contract tests" @@ -10,4 +10,4 @@ license = "Apache-2.0" [dependencies] cosmwasm-std = "1.1.0" -tg-voting-contract = { path = "../voting-contract", version = "0.15.0" } +tg-voting-contract = { path = "../voting-contract", version = "0.15.1" } diff --git a/packages/tg3/Cargo.toml b/packages/tg3/Cargo.toml index c4db340..3b83041 100644 --- a/packages/tg3/Cargo.toml +++ b/packages/tg3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg3" -version = "0.15.0" +version = "0.15.1" authors = ["Bartłomiej Kuras "] edition = "2018" description = "Tgrade-3 Interface: On-Chain MultiSig/Voting contracts" @@ -12,8 +12,8 @@ license = "Apache-2.0" cosmwasm-std = "1.1.0" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg-bindings = { version = "0.15.0", path = "../../packages/bindings" } -tg-utils = { version = "0.15.0", path = "../../packages/utils" } +tg-bindings = { version = "0.15.1", path = "../../packages/bindings" } +tg-utils = { version = "0.15.1", path = "../../packages/utils" } [dev-dependencies] cosmwasm-schema = "1.1.0" diff --git a/packages/tg4/Cargo.toml b/packages/tg4/Cargo.toml index aec6867..4b876da 100644 --- a/packages/tg4/Cargo.toml +++ b/packages/tg4/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg4" -version = "0.15.0" +version = "0.15.1" authors = ["Ethan Frey "] edition = "2018" description = "Tgrade-4 Interface: Groups Members" @@ -12,7 +12,7 @@ license = "Apache-2.0" cosmwasm-std = "1.1.0" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg-bindings = { path = "../bindings", version = "0.15.0" } +tg-bindings = { path = "../bindings", version = "0.15.1" } [dev-dependencies] cosmwasm-schema = "1.1.0" diff --git a/packages/utils/Cargo.toml b/packages/utils/Cargo.toml index 406a9ca..7917e21 100644 --- a/packages/utils/Cargo.toml +++ b/packages/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg-utils" -version = "0.15.0" +version = "0.15.1" authors = ["Ethan Frey "] edition = "2018" description = "Tgrade Utils: helpers for various contracts" @@ -19,6 +19,6 @@ cw2 = "0.15.0" schemars = "0.8.1" semver = "1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg4 = { path = "../tg4", version = "0.15.0" } -tg-bindings = { path = "../bindings", version = "0.15.0" } +tg4 = { path = "../tg4", version = "0.15.1" } +tg-bindings = { path = "../bindings", version = "0.15.1" } thiserror = "1.0.21" diff --git a/packages/voting-contract/Cargo.toml b/packages/voting-contract/Cargo.toml index 6f27022..cdb90ed 100644 --- a/packages/voting-contract/Cargo.toml +++ b/packages/voting-contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg-voting-contract" -version = "0.15.0" +version = "0.15.1" authors = ["Bartłomiej Kuras "] edition = "2018" description = "Generic utils for building voting contracts for tgrade" @@ -16,10 +16,10 @@ cw-utils = "0.15.0" cw-storage-plus = "0.15.0" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } -tg3 = { path = "../../packages/tg3", version = "0.15.0" } -tg4 = { path = "../tg4", version = "0.15.0" } -tg-bindings = { path = "../bindings", version = "0.15.0" } -tg-utils = { version = "0.15.0", path = "../utils" } +tg3 = { path = "../../packages/tg3", version = "0.15.1" } +tg4 = { path = "../tg4", version = "0.15.1" } +tg-bindings = { path = "../bindings", version = "0.15.1" } +tg-utils = { version = "0.15.1", path = "../utils" } thiserror = "1" [dev-dependencies] @@ -27,5 +27,5 @@ anyhow = "1" cosmwasm-schema = "1.1.0" cw-multi-test = "0.15.0" derivative = "2" -tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.0" } -tg4-engagement = { path = "../../contracts/tg4-engagement", version = "0.15.0", features = ["library"] } +tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.1" } +tg4-engagement = { path = "../../contracts/tg4-engagement", version = "0.15.1", features = ["library"] } From 1c3b3bc33dc083bfcb94cd680f83c47926a96436 Mon Sep 17 00:00:00 2001 From: Mauro Lacy Date: Thu, 22 Sep 2022 09:41:49 +0200 Subject: [PATCH 2/2] Update CHANGELOG --- CHANGELOG.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 105223d..f5d5412 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,16 @@ ## [Unreleased](https://github.com/confio/poe-contracts/tree/HEAD) -[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.15.0...HEAD) +[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.15.1...HEAD) + +## [v0.15.1](https://github.com/confio/poe-contracts/tree/v0.15.1) (2022-09-22) + +[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.15.0...v0.15.1) + +**Merged pull requests:** + +- Fix/contract name [\#189](https://github.com/confio/poe-contracts/pull/189) ([maurolacy](https://github.com/maurolacy)) +- Add promote / demote contract to privileged gov proposal [\#188](https://github.com/confio/poe-contracts/pull/188) ([maurolacy](https://github.com/maurolacy)) ## [v0.15.0](https://github.com/confio/poe-contracts/tree/v0.15.0) (2022-09-19)