From 6f00e7249fcd0fb40c1cc6baf5ea2d3ce139c3a1 Mon Sep 17 00:00:00 2001 From: Mauro Lacy Date: Wed, 13 Jul 2022 17:44:05 +0200 Subject: [PATCH 1/2] Set version: 0.12.0 --- 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 2b01350d..395733cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1545,7 +1545,7 @@ dependencies = [ [[package]] name = "tg-bindings" -version = "0.11.0" +version = "0.12.0" dependencies = [ "base64", "cosmwasm-schema", @@ -1558,7 +1558,7 @@ dependencies = [ [[package]] name = "tg-bindings-test" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "cosmwasm-std", @@ -1572,7 +1572,7 @@ dependencies = [ [[package]] name = "tg-test-utils" -version = "0.11.0" +version = "0.12.0" dependencies = [ "cosmwasm-std", "tg-voting-contract", @@ -1580,7 +1580,7 @@ dependencies = [ [[package]] name = "tg-utils" -version = "0.11.0" +version = "0.12.0" dependencies = [ "cosmwasm-std", "cw-controllers", @@ -1597,7 +1597,7 @@ dependencies = [ [[package]] name = "tg-voting-contract" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "cosmwasm-schema", @@ -1619,7 +1619,7 @@ dependencies = [ [[package]] name = "tg3" -version = "0.11.0" +version = "0.12.0" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1631,7 +1631,7 @@ dependencies = [ [[package]] name = "tg4" -version = "0.11.0" +version = "0.12.0" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1642,7 +1642,7 @@ dependencies = [ [[package]] name = "tg4-engagement" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "cosmwasm-schema", @@ -1664,7 +1664,7 @@ dependencies = [ [[package]] name = "tg4-group" -version = "0.11.0" +version = "0.12.0" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1681,7 +1681,7 @@ dependencies = [ [[package]] name = "tg4-mixer" -version = "0.11.0" +version = "0.12.0" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1706,7 +1706,7 @@ dependencies = [ [[package]] name = "tg4-stake" -version = "0.11.0" +version = "0.12.0" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1726,7 +1726,7 @@ dependencies = [ [[package]] name = "tgrade-community-pool" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "cosmwasm-schema", @@ -1747,7 +1747,7 @@ dependencies = [ [[package]] name = "tgrade-gov-reflect" -version = "0.11.0" +version = "0.12.0" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1760,7 +1760,7 @@ dependencies = [ [[package]] name = "tgrade-validator-voting" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "cosmwasm-schema", @@ -1782,7 +1782,7 @@ dependencies = [ [[package]] name = "tgrade-valset" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "assert_matches", @@ -1810,7 +1810,7 @@ dependencies = [ [[package]] name = "tgrade-vesting-account" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "assert_matches", diff --git a/contracts/tg4-engagement/Cargo.toml b/contracts/tg4-engagement/Cargo.toml index d01827f5..8365a1ac 100644 --- a/contracts/tg4-engagement/Cargo.toml +++ b/contracts/tg4-engagement/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg4-engagement" -version = "0.11.0" +version = "0.12.0" authors = ["Ethan Frey "] edition = "2018" description = "Simple TG4 implementation of group membership controlled by an admin" @@ -25,9 +25,9 @@ cw-controllers = "0.13.4" cw-storage-plus = "0.13.4" cw-utils = "0.13.4" cw2 = "0.13.4" -tg-utils = { version = "0.11.0", path = "../../packages/utils" } -tg-bindings = { version = "0.11.0", path = "../../packages/bindings" } -tg4 = { path = "../../packages/tg4", version = "0.11.0" } +tg-utils = { version = "0.12.0", path = "../../packages/utils" } +tg-bindings = { version = "0.12.0", path = "../../packages/bindings" } +tg4 = { path = "../../packages/tg4", version = "0.12.0" } 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.0.0" cw-multi-test = "0.13.4" derivative = "2" -tg-bindings-test = { version = "0.11.0", path = "../../packages/bindings-test" } +tg-bindings-test = { version = "0.12.0", path = "../../packages/bindings-test" } diff --git a/contracts/tg4-group/Cargo.toml b/contracts/tg4-group/Cargo.toml index ad153028..21f725b3 100644 --- a/contracts/tg4-group/Cargo.toml +++ b/contracts/tg4-group/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg4-group" -version = "0.11.0" +version = "0.12.0" authors = ["Mauro Lacy "] edition = "2018" description = "Simple tg4 implementation of group membership controlled by admin" @@ -34,7 +34,7 @@ cw-controllers = "0.13.4" cw-storage-plus = "0.13.4" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg4 = { version = "0.11.0", path = "../../packages/tg4" } +tg4 = { version = "0.12.0", 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 93a8755e..4eb6b24a 100644 --- a/contracts/tg4-mixer/Cargo.toml +++ b/contracts/tg4-mixer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg4-mixer" -version = "0.11.0" +version = "0.12.0" 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.11.0" } -tg-utils = { path = "../../packages/utils", version = "0.11.0" } -tg-bindings = { path = "../../packages/bindings", version = "0.11.0" } +tg4 = { path = "../../packages/tg4", version = "0.12.0" } +tg-utils = { path = "../../packages/utils", version = "0.12.0" } +tg-bindings = { path = "../../packages/bindings", version = "0.12.0" } [dev-dependencies] cosmwasm-schema = "1.0.0" # bench dependencies cosmwasm-vm = { version = "1.0.0" } cw-multi-test = "0.13.4" -tg4-engagement = { path = "../tg4-engagement", version = "0.11.0", features = ["library"] } -tg4-stake = { path = "../tg4-stake", version = "0.11.0", features = ["library"] } +tg4-engagement = { path = "../tg4-engagement", version = "0.12.0", features = ["library"] } +tg4-stake = { path = "../tg4-stake", version = "0.12.0", features = ["library"] } [[bench]] name = "main" diff --git a/contracts/tg4-stake/Cargo.toml b/contracts/tg4-stake/Cargo.toml index 7ced37b5..f78e6fb9 100644 --- a/contracts/tg4-stake/Cargo.toml +++ b/contracts/tg4-stake/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg4-stake" -version = "0.11.0" +version = "0.12.0" authors = ["Ethan Frey "] edition = "2018" description = "TG4 implementation of group based on staked tokens" @@ -28,11 +28,11 @@ cw-storage-plus = "0.13.4" itertools = "0.10" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg4 = { path = "../../packages/tg4", version = "0.11.0" } -tg-utils = { path = "../../packages/utils", version = "0.11.0" } -tg-bindings = { path = "../../packages/bindings", version = "0.11.0" } +tg4 = { path = "../../packages/tg4", version = "0.12.0" } +tg-utils = { path = "../../packages/utils", version = "0.12.0" } +tg-bindings = { path = "../../packages/bindings", version = "0.12.0" } thiserror = "1.0.21" [dev-dependencies] cosmwasm-schema = "1.0.0" -tg-bindings-test = { path = "../../packages/bindings-test", version = "0.11.0" } +tg-bindings-test = { path = "../../packages/bindings-test", version = "0.12.0" } diff --git a/contracts/tgrade-community-pool/Cargo.toml b/contracts/tgrade-community-pool/Cargo.toml index dcc1fa3b..e7e97474 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.11.0" +version = "0.12.0" authors = ["Bartłomiej Kuras "] edition = "2018" description = "Implementing tgrade-community-pool voting contract" @@ -21,16 +21,16 @@ cosmwasm-std = "1.0.0" cw2 = "0.13.4" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } -tg-bindings = { path = "../../packages/bindings", version = "0.11.0" } -tg-utils = { path = "../../packages/utils", version = "0.11.0" } -tg-voting-contract = { version = "0.11.0", path = "../../packages/voting-contract" } -tg3 = { path = "../../packages/tg3", version = "0.11.0" } -tg4-engagement = { path = "../tg4-engagement", version = "0.11.0", features = ["library"] } +tg-bindings = { path = "../../packages/bindings", version = "0.12.0" } +tg-utils = { path = "../../packages/utils", version = "0.12.0" } +tg-voting-contract = { version = "0.12.0", path = "../../packages/voting-contract" } +tg3 = { path = "../../packages/tg3", version = "0.12.0" } +tg4-engagement = { path = "../tg4-engagement", version = "0.12.0", features = ["library"] } thiserror = "1" [dev-dependencies] anyhow = "1" cosmwasm-schema = "1.0.0" cw-multi-test = "0.13.4" -tg-bindings-test = { path = "../../packages/bindings-test", version = "0.11.0" } -tg4 = { path = "../../packages/tg4", version = "0.11.0" } +tg-bindings-test = { path = "../../packages/bindings-test", version = "0.12.0" } +tg4 = { path = "../../packages/tg4", version = "0.12.0" } diff --git a/contracts/tgrade-gov-reflect/Cargo.toml b/contracts/tgrade-gov-reflect/Cargo.toml index 779da3f2..5fce25f6 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.11.0" +version = "0.12.0" authors = ["Ethan Frey "] edition = "2018" description = "Implementing tgrade-gov-reflect voting contract" @@ -28,7 +28,7 @@ cosmwasm-std = "1.0.0" cw-storage-plus = "0.13.4" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg-bindings = { version = "0.11.0", path = "../../packages/bindings" } +tg-bindings = { version = "0.12.0", path = "../../packages/bindings" } thiserror = "1" [dev-dependencies] diff --git a/contracts/tgrade-validator-voting/Cargo.toml b/contracts/tgrade-validator-voting/Cargo.toml index 8994845b..b49a9456 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.11.0" +version = "0.12.0" authors = ["Ethan Frey "] edition = "2018" description = "Implementing tgrade-validator-voting" @@ -21,10 +21,10 @@ cosmwasm-std = "1.0.0" cw2 = "0.13.4" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } -tg-bindings = { path = "../../packages/bindings", version = "0.11.0" } -tg-utils = { path = "../../packages/utils", version = "0.11.0" } -tg-voting-contract = { version = "0.11.0", path = "../../packages/voting-contract" } -tg3 = { path = "../../packages/tg3", version = "0.11.0" } +tg-bindings = { path = "../../packages/bindings", version = "0.12.0" } +tg-utils = { path = "../../packages/utils", version = "0.12.0" } +tg-voting-contract = { version = "0.12.0", path = "../../packages/voting-contract" } +tg3 = { path = "../../packages/tg3", version = "0.12.0" } thiserror = "1" [dev-dependencies] @@ -32,8 +32,8 @@ anyhow = "1" cosmwasm-schema = "1.0.0" cw-multi-test = "0.13.4" cw-storage-plus = "0.13.4" -tg-bindings-test = { version = "0.11.0", path = "../../packages/bindings-test" } -tg-utils = { version = "0.11.0", path = "../../packages/utils" } -tg-voting-contract = { version = "0.11.0", path = "../../packages/voting-contract" } -tg4 = { path = "../../packages/tg4", version = "0.11.0" } -tg4-engagement = { path = "../tg4-engagement", version = "0.11.0", features = ["library"] } +tg-bindings-test = { version = "0.12.0", path = "../../packages/bindings-test" } +tg-utils = { version = "0.12.0", path = "../../packages/utils" } +tg-voting-contract = { version = "0.12.0", path = "../../packages/voting-contract" } +tg4 = { path = "../../packages/tg4", version = "0.12.0" } +tg4-engagement = { path = "../tg4-engagement", version = "0.12.0", features = ["library"] } diff --git a/contracts/tgrade-valset/Cargo.toml b/contracts/tgrade-valset/Cargo.toml index ee15d2bc..35f0907f 100644 --- a/contracts/tgrade-valset/Cargo.toml +++ b/contracts/tgrade-valset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tgrade-valset" -version = "0.11.0" +version = "0.12.0" 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.11.0" } -tg-bindings = { version = "0.11.0", path = "../../packages/bindings" } -tg-utils = { version = "0.11.0", path = "../../packages/utils" } +tg4 = { path = "../../packages/tg4", version = "0.12.0" } +tg-bindings = { version = "0.12.0", path = "../../packages/bindings" } +tg-utils = { version = "0.12.0", 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.0.0" cw-multi-test = "0.13.4" derivative = "2" -tg4-engagement = { path = "../tg4-engagement", version = "0.11.0" } -tg4-stake = { path = "../tg4-stake", version = "0.11.0" } +tg4-engagement = { path = "../tg4-engagement", version = "0.12.0" } +tg4-stake = { path = "../tg4-stake", version = "0.12.0" } # we enable multitest feature only for tests -tg-bindings-test = { path = "../../packages/bindings-test", version = "0.11.0" } +tg-bindings-test = { path = "../../packages/bindings-test", version = "0.12.0" } diff --git a/contracts/tgrade-vesting-account/Cargo.toml b/contracts/tgrade-vesting-account/Cargo.toml index 114f7839..92b50922 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.11.0" +version = "0.12.0" authors = ["Jakub Bogucki "] edition = "2018" description = "Vesting Account as a contract" @@ -22,8 +22,8 @@ cw2 = "0.13.4" cw-storage-plus = "0.13.4" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg-bindings = { version = "0.11.0", path = "../../packages/bindings" } -tg-utils = { version = "0.11.0", path = "../../packages/utils" } +tg-bindings = { version = "0.12.0", path = "../../packages/bindings" } +tg-utils = { version = "0.12.0", path = "../../packages/utils" } thiserror = "1" [dev-dependencies] @@ -32,4 +32,4 @@ assert_matches = "1" derivative = "2" cosmwasm-schema = "1.0.0" cw-multi-test = "0.13.4" -tg-bindings-test = { version = "0.11.0", path = "../../packages/bindings-test" } +tg-bindings-test = { version = "0.12.0", path = "../../packages/bindings-test" } diff --git a/packages/bindings-test/Cargo.toml b/packages/bindings-test/Cargo.toml index 8f3b2036..d4d9a9d2 100644 --- a/packages/bindings-test/Cargo.toml +++ b/packages/bindings-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg-bindings-test" -version = "0.11.0" +version = "0.12.0" authors = ["Ethan Frey "] edition = "2018" description = "Multitest (and other test helpers) support for Tgrade-specific contracts" @@ -15,5 +15,5 @@ cw-multi-test = "0.13.4" cw-storage-plus = "0.13.4" schemars = "0.8" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg-bindings = { version = "0.11.0", path = "../bindings" } +tg-bindings = { version = "0.12.0", path = "../bindings" } thiserror = "1.0.21" diff --git a/packages/bindings/Cargo.toml b/packages/bindings/Cargo.toml index c3d822bd..3c0500cd 100644 --- a/packages/bindings/Cargo.toml +++ b/packages/bindings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg-bindings" -version = "0.11.0" +version = "0.12.0" 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 3930d905..885ea524 100644 --- a/packages/test-utils/Cargo.toml +++ b/packages/test-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg-test-utils" -version = "0.11.0" +version = "0.12.0" authors = ["Jakub Bogucki "] edition = "2018" description = "Utilities used in contract tests" @@ -10,4 +10,4 @@ license = "Apache-2.0" [dependencies] cosmwasm-std = "1.0.0" -tg-voting-contract = { path = "../voting-contract", version = "0.11.0" } +tg-voting-contract = { path = "../voting-contract", version = "0.12.0" } diff --git a/packages/tg3/Cargo.toml b/packages/tg3/Cargo.toml index 2d5c4d76..3193d6a7 100644 --- a/packages/tg3/Cargo.toml +++ b/packages/tg3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg3" -version = "0.11.0" +version = "0.12.0" 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.0.0" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg-bindings = { version = "0.11.0", path = "../../packages/bindings" } -tg-utils = { version = "0.11.0", path = "../../packages/utils" } +tg-bindings = { version = "0.12.0", path = "../../packages/bindings" } +tg-utils = { version = "0.12.0", path = "../../packages/utils" } [dev-dependencies] cosmwasm-schema = "1.0.0" diff --git a/packages/tg4/Cargo.toml b/packages/tg4/Cargo.toml index 10f31a1e..ab21d858 100644 --- a/packages/tg4/Cargo.toml +++ b/packages/tg4/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg4" -version = "0.11.0" +version = "0.12.0" authors = ["Ethan Frey "] edition = "2018" description = "Tgrade-4 Interface: Groups Members" @@ -12,7 +12,7 @@ license = "Apache-2.0" cosmwasm-std = "1.0.0" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg-bindings = { path = "../bindings", version = "0.11.0" } +tg-bindings = { path = "../bindings", version = "0.12.0" } [dev-dependencies] cosmwasm-schema = "1.0.0" diff --git a/packages/utils/Cargo.toml b/packages/utils/Cargo.toml index c8b4b667..f9c612e4 100644 --- a/packages/utils/Cargo.toml +++ b/packages/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg-utils" -version = "0.11.0" +version = "0.12.0" authors = ["Ethan Frey "] edition = "2018" description = "Tgrade Utils: helpers for various contracts" @@ -19,6 +19,6 @@ cw2 = "0.13.4" schemars = "0.8.1" semver = "1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg4 = { path = "../tg4", version = "0.11.0" } -tg-bindings = { path = "../bindings", version = "0.11.0" } +tg4 = { path = "../tg4", version = "0.12.0" } +tg-bindings = { path = "../bindings", version = "0.12.0" } thiserror = "1.0.21" diff --git a/packages/voting-contract/Cargo.toml b/packages/voting-contract/Cargo.toml index d7389769..7b040d16 100644 --- a/packages/voting-contract/Cargo.toml +++ b/packages/voting-contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg-voting-contract" -version = "0.11.0" +version = "0.12.0" authors = ["Bartłomiej Kuras "] edition = "2018" description = "Generic utils for building voting contracts for tgrade" @@ -16,10 +16,10 @@ cw-utils = "0.13.4" cw-storage-plus = "0.13.4" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } -tg3 = { path = "../../packages/tg3", version = "0.11.0" } -tg4 = { path = "../tg4", version = "0.11.0" } -tg-bindings = { path = "../bindings", version = "0.11.0" } -tg-utils = { version = "0.11.0", path = "../utils" } +tg3 = { path = "../../packages/tg3", version = "0.12.0" } +tg4 = { path = "../tg4", version = "0.12.0" } +tg-bindings = { path = "../bindings", version = "0.12.0" } +tg-utils = { version = "0.12.0", path = "../utils" } thiserror = "1" [dev-dependencies] @@ -27,5 +27,5 @@ anyhow = "1" cosmwasm-schema = "1.0.0" cw-multi-test = "0.13.4" derivative = "2" -tg-bindings-test = { path = "../../packages/bindings-test", version = "0.11.0" } -tg4-engagement = { path = "../../contracts/tg4-engagement", version = "0.11.0", features = ["library"] } +tg-bindings-test = { path = "../../packages/bindings-test", version = "0.12.0" } +tg4-engagement = { path = "../../contracts/tg4-engagement", version = "0.12.0", features = ["library"] } From e52c529feddd3a51da12fae4ee511a15d219d12d Mon Sep 17 00:00:00 2001 From: Mauro Lacy Date: Thu, 14 Jul 2022 09:38:13 +0200 Subject: [PATCH 2/2] Update CHANGELOG --- CHANGELOG.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aef47aee..27ad1c0e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,21 @@ ## [Unreleased](https://github.com/confio/poe-contracts/tree/HEAD) -[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.11.0...HEAD) +[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.12.0...HEAD) + +## [v0.12.0](https://github.com/confio/poe-contracts/tree/v0.12.0) (2022-07-14) + +[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.11.0...v0.12.0) + +**Closed issues:** + +- Review TODOs / FIXMEs [\#138](https://github.com/confio/poe-contracts/issues/138) + +**Merged pull requests:** + +- TODO / FIXME review [\#160](https://github.com/confio/poe-contracts/pull/160) ([maurolacy](https://github.com/maurolacy)) +- Tgrade gov change params 2 [\#159](https://github.com/confio/poe-contracts/pull/159) ([maurolacy](https://github.com/maurolacy)) +- Implement the ChangeParams proposal [\#157](https://github.com/confio/poe-contracts/pull/157) ([maurolacy](https://github.com/maurolacy)) ## [v0.11.0](https://github.com/confio/poe-contracts/tree/v0.11.0) (2022-06-10)