From 45eed60ece3c7a8f815997afc1ad1163e34f2f3c Mon Sep 17 00:00:00 2001 From: Mauro Lacy Date: Tue, 13 Dec 2022 08:23:41 +0100 Subject: [PATCH 01/11] Update cw-plus to v0.16.0 --- contracts/tg4-engagement/Cargo.toml | 10 +++++----- contracts/tg4-group/Cargo.toml | 10 +++++----- contracts/tg4-mixer/Cargo.toml | 10 +++++----- contracts/tg4-stake/Cargo.toml | 8 ++++---- contracts/tgrade-community-pool/Cargo.toml | 6 +++--- contracts/tgrade-gov-reflect/Cargo.toml | 2 +- contracts/tgrade-validator-voting/Cargo.toml | 8 ++++---- contracts/tgrade-valset/Cargo.toml | 10 +++++----- contracts/tgrade-vesting-account/Cargo.toml | 8 ++++---- packages/bindings-test/Cargo.toml | 4 ++-- packages/utils/Cargo.toml | 8 ++++---- packages/voting-contract/Cargo.toml | 6 +++--- 12 files changed, 45 insertions(+), 45 deletions(-) diff --git a/contracts/tg4-engagement/Cargo.toml b/contracts/tg4-engagement/Cargo.toml index 2e24a6f..e088511 100644 --- a/contracts/tg4-engagement/Cargo.toml +++ b/contracts/tg4-engagement/Cargo.toml @@ -21,10 +21,10 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" -cw-controllers = "0.15.0" -cw-storage-plus = "0.15.0" -cw-utils = "0.15.0" -cw2 = "0.15.0" +cw-controllers = "0.16.0" +cw-storage-plus = "0.16.0" +cw-utils = "0.16.0" +cw2 = "0.16.0" tg-utils = { version = "0.15.2", path = "../../packages/utils" } tg-bindings = { version = "0.15.2", path = "../../packages/bindings" } tg4 = { path = "../../packages/tg4", version = "0.15.2" } @@ -35,6 +35,6 @@ thiserror = "1.0.21" [dev-dependencies] anyhow = "1" cosmwasm-schema = "1.1.0" -cw-multi-test = "0.15.0" +cw-multi-test = "0.16.0" derivative = "2" tg-bindings-test = { version = "0.15.2", path = "../../packages/bindings-test" } diff --git a/contracts/tg4-group/Cargo.toml b/contracts/tg4-group/Cargo.toml index 36ee5c2..782fd65 100644 --- a/contracts/tg4-group/Cargo.toml +++ b/contracts/tg4-group/Cargo.toml @@ -27,11 +27,11 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" -cw-utils = "0.15.0" -cw2 = "0.15.0" -cw4 = "0.15.0" -cw-controllers = "0.15.0" -cw-storage-plus = "0.15.0" +cw-utils = "0.16.0" +cw2 = "0.16.0" +cw4 = "0.16.0" +cw-controllers = "0.16.0" +cw-storage-plus = "0.16.0" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } tg4 = { version = "0.15.2", path = "../../packages/tg4" } diff --git a/contracts/tg4-mixer/Cargo.toml b/contracts/tg4-mixer/Cargo.toml index 5920892..62e7792 100644 --- a/contracts/tg4-mixer/Cargo.toml +++ b/contracts/tg4-mixer/Cargo.toml @@ -23,10 +23,10 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" -cw-utils = "0.15.0" -cw2 = "0.15.0" -cw20 = "0.15.0" -cw-storage-plus = "0.15.0" +cw-utils = "0.16.0" +cw2 = "0.16.0" +cw20 = "0.16.0" +cw-storage-plus = "0.16.0" integer-sqrt = "0.1.5" rust_decimal = { version = "1.16", default-features = false, features = ["maths"] } rust_decimal_macros = { version = "1.16", default-features = false } @@ -41,7 +41,7 @@ tg-bindings = { path = "../../packages/bindings", version = "0.15.2" } cosmwasm-schema = "1.1.0" # bench dependencies cosmwasm-vm = { version = "1.1.0" } -cw-multi-test = "0.15.0" +cw-multi-test = "0.16.0" tg4-engagement = { path = "../tg4-engagement", version = "0.15.2", features = ["library"] } tg4-stake = { path = "../tg4-stake", version = "0.15.2", features = ["library"] } diff --git a/contracts/tg4-stake/Cargo.toml b/contracts/tg4-stake/Cargo.toml index 69a9245..8fee5a8 100644 --- a/contracts/tg4-stake/Cargo.toml +++ b/contracts/tg4-stake/Cargo.toml @@ -21,10 +21,10 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" -cw-utils = "0.15.0" -cw2 = "0.15.0" -cw-controllers = "0.15.0" -cw-storage-plus = "0.15.0" +cw-utils = "0.16.0" +cw2 = "0.16.0" +cw-controllers = "0.16.0" +cw-storage-plus = "0.16.0" itertools = "0.10" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } diff --git a/contracts/tgrade-community-pool/Cargo.toml b/contracts/tgrade-community-pool/Cargo.toml index 5814657..9a7719b 100644 --- a/contracts/tgrade-community-pool/Cargo.toml +++ b/contracts/tgrade-community-pool/Cargo.toml @@ -18,8 +18,8 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" -cw-utils = "0.15.0" -cw2 = "0.15.0" +cw-utils = "0.16.0" +cw2 = "0.16.0" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } tg-bindings = { path = "../../packages/bindings", version = "0.15.2" } @@ -32,6 +32,6 @@ thiserror = "1" [dev-dependencies] anyhow = "1" cosmwasm-schema = "1.1.0" -cw-multi-test = "0.15.0" +cw-multi-test = "0.16.0" tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.2" } tg4 = { path = "../../packages/tg4", version = "0.15.2" } diff --git a/contracts/tgrade-gov-reflect/Cargo.toml b/contracts/tgrade-gov-reflect/Cargo.toml index ce20e73..3a15fcd 100644 --- a/contracts/tgrade-gov-reflect/Cargo.toml +++ b/contracts/tgrade-gov-reflect/Cargo.toml @@ -25,7 +25,7 @@ backtraces = ["cosmwasm-std/backtraces"] [dependencies] cosmwasm-std = "1.1.0" -cw-storage-plus = "0.15.0" +cw-storage-plus = "0.16.0" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } tg-bindings = { version = "0.15.2", path = "../../packages/bindings" } diff --git a/contracts/tgrade-validator-voting/Cargo.toml b/contracts/tgrade-validator-voting/Cargo.toml index feaf590..c3671da 100644 --- a/contracts/tgrade-validator-voting/Cargo.toml +++ b/contracts/tgrade-validator-voting/Cargo.toml @@ -18,8 +18,8 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" -cw-utils = "0.15.0" -cw2 = "0.15.0" +cw-utils = "0.16.0" +cw2 = "0.16.0" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } tg-bindings = { path = "../../packages/bindings", version = "0.15.2" } @@ -31,8 +31,8 @@ thiserror = "1" [dev-dependencies] anyhow = "1" cosmwasm-schema = "1.1.0" -cw-multi-test = "0.15.0" -cw-storage-plus = "0.15.0" +cw-multi-test = "0.16.0" +cw-storage-plus = "0.16.0" tg-bindings-test = { version = "0.15.2", path = "../../packages/bindings-test" } tg-utils = { version = "0.15.2", path = "../../packages/utils" } tg-voting-contract = { version = "0.15.2", path = "../../packages/voting-contract" } diff --git a/contracts/tgrade-valset/Cargo.toml b/contracts/tgrade-valset/Cargo.toml index d08bce9..917b6c3 100644 --- a/contracts/tgrade-valset/Cargo.toml +++ b/contracts/tgrade-valset/Cargo.toml @@ -27,10 +27,10 @@ integration = ["bech32", "cosmwasm-vm"] [dependencies] cosmwasm-std = "1.1.0" -cw2 = "0.15.0" -cw-utils = "0.15.0" -cw-controllers = "0.15.0" -cw-storage-plus = "0.15.0" +cw2 = "0.16.0" +cw-utils = "0.16.0" +cw-controllers = "0.16.0" +cw-storage-plus = "0.16.0" schemars = "0.8" semver = "1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } @@ -47,7 +47,7 @@ cosmwasm-vm = { version = "1.1.0", optional = true, default-features = false, fe anyhow = "1" assert_matches = "1.5" cosmwasm-schema = "1.1.0" -cw-multi-test = "0.15.0" +cw-multi-test = "0.16.0" derivative = "2" tg4-engagement = { path = "../tg4-engagement", version = "0.15.2" } tg4-stake = { path = "../tg4-stake", version = "0.15.2" } diff --git a/contracts/tgrade-vesting-account/Cargo.toml b/contracts/tgrade-vesting-account/Cargo.toml index a62cc95..139e8e7 100644 --- a/contracts/tgrade-vesting-account/Cargo.toml +++ b/contracts/tgrade-vesting-account/Cargo.toml @@ -17,9 +17,9 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" -cw-utils = "0.15.0" -cw2 = "0.15.0" -cw-storage-plus = "0.15.0" +cw-utils = "0.16.0" +cw2 = "0.16.0" +cw-storage-plus = "0.16.0" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } tg-bindings = { version = "0.15.2", path = "../../packages/bindings" } @@ -31,5 +31,5 @@ anyhow = "1" assert_matches = "1" derivative = "2" cosmwasm-schema = "1.1.0" -cw-multi-test = "0.15.0" +cw-multi-test = "0.16.0" tg-bindings-test = { version = "0.15.2", path = "../../packages/bindings-test" } diff --git a/packages/bindings-test/Cargo.toml b/packages/bindings-test/Cargo.toml index 1a51b7e..0745d86 100644 --- a/packages/bindings-test/Cargo.toml +++ b/packages/bindings-test/Cargo.toml @@ -11,8 +11,8 @@ license = "Apache-2.0" [dependencies] anyhow = "1" cosmwasm-std = "1.1.0" -cw-multi-test = "0.15.0" -cw-storage-plus = "0.15.0" +cw-multi-test = "0.16.0" +cw-storage-plus = "0.16.0" schemars = "0.8" serde = { version = "1.0.103", default-features = false, features = ["derive"] } tg-bindings = { version = "0.15.2", path = "../bindings" } diff --git a/packages/utils/Cargo.toml b/packages/utils/Cargo.toml index ed800c6..34b37ae 100644 --- a/packages/utils/Cargo.toml +++ b/packages/utils/Cargo.toml @@ -12,10 +12,10 @@ license = "Apache-2.0" [dependencies] cosmwasm-std = "1.1.0" -cw-utils = "0.15.0" -cw-controllers = "0.15.0" -cw-storage-plus = "0.15.0" -cw2 = "0.15.0" +cw-utils = "0.16.0" +cw-controllers = "0.16.0" +cw-storage-plus = "0.16.0" +cw2 = "0.16.0" schemars = "0.8.1" semver = "1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } diff --git a/packages/voting-contract/Cargo.toml b/packages/voting-contract/Cargo.toml index 889383e..7f21cce 100644 --- a/packages/voting-contract/Cargo.toml +++ b/packages/voting-contract/Cargo.toml @@ -12,8 +12,8 @@ license = "Apache-2.0" [dependencies] cosmwasm-std = "1.1.0" -cw-utils = "0.15.0" -cw-storage-plus = "0.15.0" +cw-utils = "0.16.0" +cw-storage-plus = "0.16.0" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } tg3 = { path = "../../packages/tg3", version = "0.15.2" } @@ -25,7 +25,7 @@ thiserror = "1" [dev-dependencies] anyhow = "1" cosmwasm-schema = "1.1.0" -cw-multi-test = "0.15.0" +cw-multi-test = "0.16.0" derivative = "2" tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.2" } tg4-engagement = { path = "../../contracts/tg4-engagement", version = "0.15.2", features = ["library"] } From cd01453b864cfce2c7f3727ae7f1b68cbb68e37c Mon Sep 17 00:00:00 2001 From: Mauro Lacy Date: Tue, 13 Dec 2022 08:24:02 +0100 Subject: [PATCH 02/11] Update lock file --- Cargo.lock | 40 +++++++++++++++------------------------- 1 file changed, 15 insertions(+), 25 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ec41aba..de4e0f0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -255,16 +255,6 @@ dependencies = [ "uint", ] -[[package]] -name = "cosmwasm-storage" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f024880dd46c053f30dd31f3b3aab8197b5cfaafe86c9e302c845df0cff44a0a" -dependencies = [ - "cosmwasm-std", - "serde", -] - [[package]] name = "cosmwasm-vm" version = "1.1.1" @@ -451,9 +441,9 @@ dependencies = [ [[package]] name = "cw-controllers" -version = "0.15.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cc1bc794002a1e409e4a0c8aac8839f065fb387087d51b9efa94890b82c38e7" +checksum = "24bd6738c3fd59c87d2f84911c1cad1e4f2d1c58ecaa6e52549b4f78f4ed6f07" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -466,17 +456,17 @@ dependencies = [ [[package]] name = "cw-multi-test" -version = "0.15.0" +version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2519fd64b6b8c7c4e77c317e665bd19b438db3e8e4867241fa6a31cf060feda9" +checksum = "2dc50fde3ad87ef4e3a3e57c73d11326333318761c7655cc8cae67c40382ac91" dependencies = [ "anyhow", "cosmwasm-std", - "cosmwasm-storage", "cw-storage-plus", "cw-utils", "derivative", "itertools", + "k256", "prost", "schemars", "serde", @@ -485,9 +475,9 @@ dependencies = [ [[package]] name = "cw-storage-plus" -version = "0.15.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39ba3fb5fad2dce94263d070848b2befc46b5c8e4929adfb9a3595267823d6ec" +checksum = "d9b6f91c0b94481a3e9ef1ceb183c37d00764f8751e39b45fc09f4d9b970d469" dependencies = [ "cosmwasm-std", "schemars", @@ -496,9 +486,9 @@ dependencies = [ [[package]] name = "cw-utils" -version = "0.15.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a67007ff056f4cd034f361c8ed69780c0180959b9c8037c84f3caa78120faf5" +checksum = "d6a84c6c1c0acc3616398eba50783934bd6c964bad6974241eaee3460c8f5b26" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -511,9 +501,9 @@ dependencies = [ [[package]] name = "cw2" -version = "0.15.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0a1924a28607bf7cb9fd6681a64feea3e5fa9a8cb71fb4d24cf33635b21065a" +checksum = "91398113b806f4d2a8d5f8d05684704a20ffd5968bf87e3473e1973710b884ad" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -524,9 +514,9 @@ dependencies = [ [[package]] name = "cw20" -version = "0.15.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56a48e4a85c0a31484e053a3eea15abfc3ed24fafc1a1a3e91181a0bd3a8ee91" +checksum = "a45a8794a5dd33b66af34caee52a7beceb690856adcc1682b6e3db88b2cdee62" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -537,9 +527,9 @@ dependencies = [ [[package]] name = "cw4" -version = "0.15.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce632c71b9e41aed1f9676ab864d77eb32b270a207ec60cf13d557346b32b751" +checksum = "86a93c2764ddb44038b948d9a9a8aadc9f92f5ef3e61249af2fad16091e43412" dependencies = [ "cosmwasm-schema", "cosmwasm-std", From 13a61b698e22d9e2d85e8a6747b5c4177db6a187 Mon Sep 17 00:00:00 2001 From: Mauro Lacy Date: Tue, 13 Dec 2022 08:45:58 +0100 Subject: [PATCH 03/11] Set version: 0.16.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 de4e0f0..747940a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1595,7 +1595,7 @@ dependencies = [ [[package]] name = "tg-bindings" -version = "0.15.2" +version = "0.16.0" dependencies = [ "base64", "cosmwasm-schema", @@ -1608,7 +1608,7 @@ dependencies = [ [[package]] name = "tg-bindings-test" -version = "0.15.2" +version = "0.16.0" dependencies = [ "anyhow", "cosmwasm-std", @@ -1622,7 +1622,7 @@ dependencies = [ [[package]] name = "tg-test-utils" -version = "0.15.2" +version = "0.16.0" dependencies = [ "cosmwasm-std", "tg-voting-contract", @@ -1630,7 +1630,7 @@ dependencies = [ [[package]] name = "tg-utils" -version = "0.15.2" +version = "0.16.0" dependencies = [ "cosmwasm-std", "cw-controllers", @@ -1647,7 +1647,7 @@ dependencies = [ [[package]] name = "tg-voting-contract" -version = "0.15.2" +version = "0.16.0" dependencies = [ "anyhow", "cosmwasm-schema", @@ -1669,7 +1669,7 @@ dependencies = [ [[package]] name = "tg3" -version = "0.15.2" +version = "0.16.0" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1681,7 +1681,7 @@ dependencies = [ [[package]] name = "tg4" -version = "0.15.2" +version = "0.16.0" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1692,7 +1692,7 @@ dependencies = [ [[package]] name = "tg4-engagement" -version = "0.15.2" +version = "0.16.0" dependencies = [ "anyhow", "cosmwasm-schema", @@ -1714,7 +1714,7 @@ dependencies = [ [[package]] name = "tg4-group" -version = "0.15.2" +version = "0.16.0" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1731,7 +1731,7 @@ dependencies = [ [[package]] name = "tg4-mixer" -version = "0.15.2" +version = "0.16.0" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1756,7 +1756,7 @@ dependencies = [ [[package]] name = "tg4-stake" -version = "0.15.2" +version = "0.16.0" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1776,7 +1776,7 @@ dependencies = [ [[package]] name = "tgrade-community-pool" -version = "0.15.2" +version = "0.16.0" dependencies = [ "anyhow", "cosmwasm-schema", @@ -1798,7 +1798,7 @@ dependencies = [ [[package]] name = "tgrade-gov-reflect" -version = "0.15.2" +version = "0.16.0" dependencies = [ "cosmwasm-schema", "cosmwasm-std", @@ -1811,7 +1811,7 @@ dependencies = [ [[package]] name = "tgrade-validator-voting" -version = "0.15.2" +version = "0.16.0" dependencies = [ "anyhow", "cosmwasm-schema", @@ -1834,7 +1834,7 @@ dependencies = [ [[package]] name = "tgrade-valset" -version = "0.15.2" +version = "0.16.0" dependencies = [ "anyhow", "assert_matches", @@ -1862,7 +1862,7 @@ dependencies = [ [[package]] name = "tgrade-vesting-account" -version = "0.15.2" +version = "0.16.0" dependencies = [ "anyhow", "assert_matches", diff --git a/contracts/tg4-engagement/Cargo.toml b/contracts/tg4-engagement/Cargo.toml index e088511..0aa0d88 100644 --- a/contracts/tg4-engagement/Cargo.toml +++ b/contracts/tg4-engagement/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg4-engagement" -version = "0.15.2" +version = "0.16.0" authors = ["Ethan Frey "] edition = "2018" description = "Simple TG4 implementation of group membership controlled by an admin" @@ -25,9 +25,9 @@ cw-controllers = "0.16.0" cw-storage-plus = "0.16.0" cw-utils = "0.16.0" cw2 = "0.16.0" -tg-utils = { version = "0.15.2", path = "../../packages/utils" } -tg-bindings = { version = "0.15.2", path = "../../packages/bindings" } -tg4 = { path = "../../packages/tg4", version = "0.15.2" } +tg-utils = { version = "0.16.0", path = "../../packages/utils" } +tg-bindings = { version = "0.16.0", path = "../../packages/bindings" } +tg4 = { path = "../../packages/tg4", version = "0.16.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.1.0" cw-multi-test = "0.16.0" derivative = "2" -tg-bindings-test = { version = "0.15.2", path = "../../packages/bindings-test" } +tg-bindings-test = { version = "0.16.0", path = "../../packages/bindings-test" } diff --git a/contracts/tg4-group/Cargo.toml b/contracts/tg4-group/Cargo.toml index 782fd65..7e509d2 100644 --- a/contracts/tg4-group/Cargo.toml +++ b/contracts/tg4-group/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg4-group" -version = "0.15.2" +version = "0.16.0" authors = ["Mauro Lacy "] edition = "2018" description = "Simple tg4 implementation of group membership controlled by admin" @@ -34,7 +34,7 @@ cw-controllers = "0.16.0" cw-storage-plus = "0.16.0" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg4 = { version = "0.15.2", path = "../../packages/tg4" } +tg4 = { version = "0.16.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 62e7792..44c2d92 100644 --- a/contracts/tg4-mixer/Cargo.toml +++ b/contracts/tg4-mixer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg4-mixer" -version = "0.15.2" +version = "0.16.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.15.2" } -tg-utils = { path = "../../packages/utils", version = "0.15.2" } -tg-bindings = { path = "../../packages/bindings", version = "0.15.2" } +tg4 = { path = "../../packages/tg4", version = "0.16.0" } +tg-utils = { path = "../../packages/utils", version = "0.16.0" } +tg-bindings = { path = "../../packages/bindings", version = "0.16.0" } [dev-dependencies] cosmwasm-schema = "1.1.0" # bench dependencies cosmwasm-vm = { version = "1.1.0" } cw-multi-test = "0.16.0" -tg4-engagement = { path = "../tg4-engagement", version = "0.15.2", features = ["library"] } -tg4-stake = { path = "../tg4-stake", version = "0.15.2", features = ["library"] } +tg4-engagement = { path = "../tg4-engagement", version = "0.16.0", features = ["library"] } +tg4-stake = { path = "../tg4-stake", version = "0.16.0", features = ["library"] } [[bench]] name = "main" diff --git a/contracts/tg4-stake/Cargo.toml b/contracts/tg4-stake/Cargo.toml index 8fee5a8..ef41f5e 100644 --- a/contracts/tg4-stake/Cargo.toml +++ b/contracts/tg4-stake/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg4-stake" -version = "0.15.2" +version = "0.16.0" authors = ["Ethan Frey "] edition = "2018" description = "TG4 implementation of group based on staked tokens" @@ -28,11 +28,11 @@ cw-storage-plus = "0.16.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.2" } -tg-utils = { path = "../../packages/utils", version = "0.15.2" } -tg-bindings = { path = "../../packages/bindings", version = "0.15.2" } +tg4 = { path = "../../packages/tg4", version = "0.16.0" } +tg-utils = { path = "../../packages/utils", version = "0.16.0" } +tg-bindings = { path = "../../packages/bindings", version = "0.16.0" } thiserror = "1.0.21" [dev-dependencies] cosmwasm-schema = "1.1.0" -tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.2" } +tg-bindings-test = { path = "../../packages/bindings-test", version = "0.16.0" } diff --git a/contracts/tgrade-community-pool/Cargo.toml b/contracts/tgrade-community-pool/Cargo.toml index 9a7719b..d49c0b6 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.2" +version = "0.16.0" authors = ["Bartłomiej Kuras "] edition = "2018" description = "Implementing tgrade-community-pool voting contract" @@ -22,16 +22,16 @@ cw-utils = "0.16.0" cw2 = "0.16.0" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } -tg-bindings = { path = "../../packages/bindings", version = "0.15.2" } -tg-utils = { path = "../../packages/utils", version = "0.15.2" } -tg-voting-contract = { version = "0.15.2", path = "../../packages/voting-contract" } -tg3 = { path = "../../packages/tg3", version = "0.15.2" } -tg4-engagement = { path = "../tg4-engagement", version = "0.15.2", features = ["library"] } +tg-bindings = { path = "../../packages/bindings", version = "0.16.0" } +tg-utils = { path = "../../packages/utils", version = "0.16.0" } +tg-voting-contract = { version = "0.16.0", path = "../../packages/voting-contract" } +tg3 = { path = "../../packages/tg3", version = "0.16.0" } +tg4-engagement = { path = "../tg4-engagement", version = "0.16.0", features = ["library"] } thiserror = "1" [dev-dependencies] anyhow = "1" cosmwasm-schema = "1.1.0" cw-multi-test = "0.16.0" -tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.2" } -tg4 = { path = "../../packages/tg4", version = "0.15.2" } +tg-bindings-test = { path = "../../packages/bindings-test", version = "0.16.0" } +tg4 = { path = "../../packages/tg4", version = "0.16.0" } diff --git a/contracts/tgrade-gov-reflect/Cargo.toml b/contracts/tgrade-gov-reflect/Cargo.toml index 3a15fcd..06a4466 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.2" +version = "0.16.0" 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.16.0" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg-bindings = { version = "0.15.2", path = "../../packages/bindings" } +tg-bindings = { version = "0.16.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 c3671da..29671db 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.2" +version = "0.16.0" authors = ["Ethan Frey "] edition = "2018" description = "Implementing tgrade-validator-voting" @@ -22,10 +22,10 @@ cw-utils = "0.16.0" cw2 = "0.16.0" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } -tg-bindings = { path = "../../packages/bindings", version = "0.15.2" } -tg-utils = { path = "../../packages/utils", version = "0.15.2" } -tg-voting-contract = { version = "0.15.2", path = "../../packages/voting-contract" } -tg3 = { path = "../../packages/tg3", version = "0.15.2" } +tg-bindings = { path = "../../packages/bindings", version = "0.16.0" } +tg-utils = { path = "../../packages/utils", version = "0.16.0" } +tg-voting-contract = { version = "0.16.0", path = "../../packages/voting-contract" } +tg3 = { path = "../../packages/tg3", version = "0.16.0" } thiserror = "1" [dev-dependencies] @@ -33,8 +33,8 @@ anyhow = "1" cosmwasm-schema = "1.1.0" cw-multi-test = "0.16.0" cw-storage-plus = "0.16.0" -tg-bindings-test = { version = "0.15.2", path = "../../packages/bindings-test" } -tg-utils = { version = "0.15.2", path = "../../packages/utils" } -tg-voting-contract = { version = "0.15.2", path = "../../packages/voting-contract" } -tg4 = { path = "../../packages/tg4", version = "0.15.2" } -tg4-engagement = { path = "../tg4-engagement", version = "0.15.2", features = ["library"] } +tg-bindings-test = { version = "0.16.0", path = "../../packages/bindings-test" } +tg-utils = { version = "0.16.0", path = "../../packages/utils" } +tg-voting-contract = { version = "0.16.0", path = "../../packages/voting-contract" } +tg4 = { path = "../../packages/tg4", version = "0.16.0" } +tg4-engagement = { path = "../tg4-engagement", version = "0.16.0", features = ["library"] } diff --git a/contracts/tgrade-valset/Cargo.toml b/contracts/tgrade-valset/Cargo.toml index 917b6c3..4293217 100644 --- a/contracts/tgrade-valset/Cargo.toml +++ b/contracts/tgrade-valset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tgrade-valset" -version = "0.15.2" +version = "0.16.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.15.2" } -tg-bindings = { version = "0.15.2", path = "../../packages/bindings" } -tg-utils = { version = "0.15.2", path = "../../packages/utils" } +tg4 = { path = "../../packages/tg4", version = "0.16.0" } +tg-bindings = { version = "0.16.0", path = "../../packages/bindings" } +tg-utils = { version = "0.16.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.1.0" cw-multi-test = "0.16.0" derivative = "2" -tg4-engagement = { path = "../tg4-engagement", version = "0.15.2" } -tg4-stake = { path = "../tg4-stake", version = "0.15.2" } +tg4-engagement = { path = "../tg4-engagement", version = "0.16.0" } +tg4-stake = { path = "../tg4-stake", version = "0.16.0" } # we enable multitest feature only for tests -tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.2" } +tg-bindings-test = { path = "../../packages/bindings-test", version = "0.16.0" } diff --git a/contracts/tgrade-vesting-account/Cargo.toml b/contracts/tgrade-vesting-account/Cargo.toml index 139e8e7..c1e9228 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.2" +version = "0.16.0" authors = ["Jakub Bogucki "] edition = "2018" description = "Vesting Account as a contract" @@ -22,8 +22,8 @@ cw2 = "0.16.0" cw-storage-plus = "0.16.0" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg-bindings = { version = "0.15.2", path = "../../packages/bindings" } -tg-utils = { version = "0.15.2", path = "../../packages/utils" } +tg-bindings = { version = "0.16.0", path = "../../packages/bindings" } +tg-utils = { version = "0.16.0", 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.16.0" -tg-bindings-test = { version = "0.15.2", path = "../../packages/bindings-test" } +tg-bindings-test = { version = "0.16.0", path = "../../packages/bindings-test" } diff --git a/packages/bindings-test/Cargo.toml b/packages/bindings-test/Cargo.toml index 0745d86..18df481 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.2" +version = "0.16.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.16.0" cw-storage-plus = "0.16.0" schemars = "0.8" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg-bindings = { version = "0.15.2", path = "../bindings" } +tg-bindings = { version = "0.16.0", path = "../bindings" } thiserror = "1.0.21" diff --git a/packages/bindings/Cargo.toml b/packages/bindings/Cargo.toml index e344ab0..3e38748 100644 --- a/packages/bindings/Cargo.toml +++ b/packages/bindings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg-bindings" -version = "0.15.2" +version = "0.16.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 76ac905..937782f 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.2" +version = "0.16.0" 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.2" } +tg-voting-contract = { path = "../voting-contract", version = "0.16.0" } diff --git a/packages/tg3/Cargo.toml b/packages/tg3/Cargo.toml index 20bfeac..9a2036c 100644 --- a/packages/tg3/Cargo.toml +++ b/packages/tg3/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg3" -version = "0.15.2" +version = "0.16.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.1.0" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg-bindings = { version = "0.15.2", path = "../../packages/bindings" } -tg-utils = { version = "0.15.2", path = "../../packages/utils" } +tg-bindings = { version = "0.16.0", path = "../../packages/bindings" } +tg-utils = { version = "0.16.0", path = "../../packages/utils" } [dev-dependencies] cosmwasm-schema = "1.1.0" diff --git a/packages/tg4/Cargo.toml b/packages/tg4/Cargo.toml index 1b3d849..9a80a13 100644 --- a/packages/tg4/Cargo.toml +++ b/packages/tg4/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg4" -version = "0.15.2" +version = "0.16.0" 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.2" } +tg-bindings = { path = "../bindings", version = "0.16.0" } [dev-dependencies] cosmwasm-schema = "1.1.0" diff --git a/packages/utils/Cargo.toml b/packages/utils/Cargo.toml index 34b37ae..3ab3ed0 100644 --- a/packages/utils/Cargo.toml +++ b/packages/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tg-utils" -version = "0.15.2" +version = "0.16.0" authors = ["Ethan Frey "] edition = "2018" description = "Tgrade Utils: helpers for various contracts" @@ -19,6 +19,6 @@ cw2 = "0.16.0" schemars = "0.8.1" semver = "1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } -tg4 = { path = "../tg4", version = "0.15.2" } -tg-bindings = { path = "../bindings", version = "0.15.2" } +tg4 = { path = "../tg4", version = "0.16.0" } +tg-bindings = { path = "../bindings", version = "0.16.0" } thiserror = "1.0.21" diff --git a/packages/voting-contract/Cargo.toml b/packages/voting-contract/Cargo.toml index 7f21cce..95911dc 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.2" +version = "0.16.0" authors = ["Bartłomiej Kuras "] edition = "2018" description = "Generic utils for building voting contracts for tgrade" @@ -16,10 +16,10 @@ cw-utils = "0.16.0" cw-storage-plus = "0.16.0" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } -tg3 = { path = "../../packages/tg3", version = "0.15.2" } -tg4 = { path = "../tg4", version = "0.15.2" } -tg-bindings = { path = "../bindings", version = "0.15.2" } -tg-utils = { version = "0.15.2", path = "../utils" } +tg3 = { path = "../../packages/tg3", version = "0.16.0" } +tg4 = { path = "../tg4", version = "0.16.0" } +tg-bindings = { path = "../bindings", version = "0.16.0" } +tg-utils = { version = "0.16.0", path = "../utils" } thiserror = "1" [dev-dependencies] @@ -27,5 +27,5 @@ anyhow = "1" cosmwasm-schema = "1.1.0" cw-multi-test = "0.16.0" derivative = "2" -tg-bindings-test = { path = "../../packages/bindings-test", version = "0.15.2" } -tg4-engagement = { path = "../../contracts/tg4-engagement", version = "0.15.2", features = ["library"] } +tg-bindings-test = { path = "../../packages/bindings-test", version = "0.16.0" } +tg4-engagement = { path = "../../contracts/tg4-engagement", version = "0.16.0", features = ["library"] } From 0ad40e7ae504bb1a5ccda2b58f542b6c1a12c73c Mon Sep 17 00:00:00 2001 From: Mauro Lacy Date: Fri, 16 Dec 2022 07:50:48 +0100 Subject: [PATCH 04/11] Update CHANGELOG --- CHANGELOG.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eda873a..b86d860 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,15 @@ ## [Unreleased](https://github.com/confio/poe-contracts/tree/HEAD) -[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.15.2...HEAD) +[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.16.0...HEAD) + +## [v0.16.0](https://github.com/confio/poe-contracts/tree/v0.16.0) (2022-12-16) + +[Full Changelog](https://github.com/confio/poe-contracts/compare/v0.15.2...v0.16.0) + +**Fixed bugs:** + +- Fix claims auto-release of vesting amounts [\#198](https://github.com/confio/poe-contracts/pull/198) ([maurolacy](https://github.com/maurolacy)) ## [v0.15.2](https://github.com/confio/poe-contracts/tree/v0.15.2) (2022-12-09) From c933c135361d868b22d202aff367366f26df0017 Mon Sep 17 00:00:00 2001 From: Mauro Lacy Date: Fri, 16 Dec 2022 09:14:31 +0100 Subject: [PATCH 05/11] Update optimizer version in optimizer script Hardcode machine to x64_64 --- scripts/optimizer.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/optimizer.sh b/scripts/optimizer.sh index b2affc4..eb1507a 100755 --- a/scripts/optimizer.sh +++ b/scripts/optimizer.sh @@ -1,9 +1,10 @@ : U="cosmwasm" -V="0.12.8" +V="0.12.10" M=$(uname -m) +M="x86_64" A="linux/${M/x86_64/amd64}" S=${M#x86_64} S=${S:+-$S} From f7fe8e183e7f5c6271f1e2533722ff6b6ee59f50 Mon Sep 17 00:00:00 2001 From: Mauro Lacy Date: Fri, 16 Dec 2022 11:39:34 +0100 Subject: [PATCH 06/11] Update cw-multi-test to latest v0.16.2 --- contracts/tg4-engagement/Cargo.toml | 2 +- contracts/tg4-mixer/Cargo.toml | 2 +- contracts/tgrade-community-pool/Cargo.toml | 2 +- contracts/tgrade-validator-voting/Cargo.toml | 2 +- contracts/tgrade-valset/Cargo.toml | 2 +- contracts/tgrade-vesting-account/Cargo.toml | 2 +- packages/bindings-test/Cargo.toml | 2 +- packages/voting-contract/Cargo.toml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/contracts/tg4-engagement/Cargo.toml b/contracts/tg4-engagement/Cargo.toml index 0aa0d88..9308484 100644 --- a/contracts/tg4-engagement/Cargo.toml +++ b/contracts/tg4-engagement/Cargo.toml @@ -35,6 +35,6 @@ thiserror = "1.0.21" [dev-dependencies] anyhow = "1" cosmwasm-schema = "1.1.0" -cw-multi-test = "0.16.0" +cw-multi-test = "0.16.2" derivative = "2" tg-bindings-test = { version = "0.16.0", path = "../../packages/bindings-test" } diff --git a/contracts/tg4-mixer/Cargo.toml b/contracts/tg4-mixer/Cargo.toml index 44c2d92..f2bae79 100644 --- a/contracts/tg4-mixer/Cargo.toml +++ b/contracts/tg4-mixer/Cargo.toml @@ -41,7 +41,7 @@ tg-bindings = { path = "../../packages/bindings", version = "0.16.0" } cosmwasm-schema = "1.1.0" # bench dependencies cosmwasm-vm = { version = "1.1.0" } -cw-multi-test = "0.16.0" +cw-multi-test = "0.16.2" tg4-engagement = { path = "../tg4-engagement", version = "0.16.0", features = ["library"] } tg4-stake = { path = "../tg4-stake", version = "0.16.0", features = ["library"] } diff --git a/contracts/tgrade-community-pool/Cargo.toml b/contracts/tgrade-community-pool/Cargo.toml index d49c0b6..ab0e7ca 100644 --- a/contracts/tgrade-community-pool/Cargo.toml +++ b/contracts/tgrade-community-pool/Cargo.toml @@ -32,6 +32,6 @@ thiserror = "1" [dev-dependencies] anyhow = "1" cosmwasm-schema = "1.1.0" -cw-multi-test = "0.16.0" +cw-multi-test = "0.16.2" tg-bindings-test = { path = "../../packages/bindings-test", version = "0.16.0" } tg4 = { path = "../../packages/tg4", version = "0.16.0" } diff --git a/contracts/tgrade-validator-voting/Cargo.toml b/contracts/tgrade-validator-voting/Cargo.toml index 29671db..73fdda0 100644 --- a/contracts/tgrade-validator-voting/Cargo.toml +++ b/contracts/tgrade-validator-voting/Cargo.toml @@ -31,7 +31,7 @@ thiserror = "1" [dev-dependencies] anyhow = "1" cosmwasm-schema = "1.1.0" -cw-multi-test = "0.16.0" +cw-multi-test = "0.16.2" cw-storage-plus = "0.16.0" tg-bindings-test = { version = "0.16.0", path = "../../packages/bindings-test" } tg-utils = { version = "0.16.0", path = "../../packages/utils" } diff --git a/contracts/tgrade-valset/Cargo.toml b/contracts/tgrade-valset/Cargo.toml index 4293217..be1e04f 100644 --- a/contracts/tgrade-valset/Cargo.toml +++ b/contracts/tgrade-valset/Cargo.toml @@ -47,7 +47,7 @@ cosmwasm-vm = { version = "1.1.0", optional = true, default-features = false, fe anyhow = "1" assert_matches = "1.5" cosmwasm-schema = "1.1.0" -cw-multi-test = "0.16.0" +cw-multi-test = "0.16.2" derivative = "2" tg4-engagement = { path = "../tg4-engagement", version = "0.16.0" } tg4-stake = { path = "../tg4-stake", version = "0.16.0" } diff --git a/contracts/tgrade-vesting-account/Cargo.toml b/contracts/tgrade-vesting-account/Cargo.toml index c1e9228..141c9b9 100644 --- a/contracts/tgrade-vesting-account/Cargo.toml +++ b/contracts/tgrade-vesting-account/Cargo.toml @@ -31,5 +31,5 @@ anyhow = "1" assert_matches = "1" derivative = "2" cosmwasm-schema = "1.1.0" -cw-multi-test = "0.16.0" +cw-multi-test = "0.16.2" tg-bindings-test = { version = "0.16.0", path = "../../packages/bindings-test" } diff --git a/packages/bindings-test/Cargo.toml b/packages/bindings-test/Cargo.toml index 18df481..ad11aae 100644 --- a/packages/bindings-test/Cargo.toml +++ b/packages/bindings-test/Cargo.toml @@ -11,7 +11,7 @@ license = "Apache-2.0" [dependencies] anyhow = "1" cosmwasm-std = "1.1.0" -cw-multi-test = "0.16.0" +cw-multi-test = "0.16.2" cw-storage-plus = "0.16.0" schemars = "0.8" serde = { version = "1.0.103", default-features = false, features = ["derive"] } diff --git a/packages/voting-contract/Cargo.toml b/packages/voting-contract/Cargo.toml index 95911dc..8dd2ce4 100644 --- a/packages/voting-contract/Cargo.toml +++ b/packages/voting-contract/Cargo.toml @@ -25,7 +25,7 @@ thiserror = "1" [dev-dependencies] anyhow = "1" cosmwasm-schema = "1.1.0" -cw-multi-test = "0.16.0" +cw-multi-test = "0.16.2" derivative = "2" tg-bindings-test = { path = "../../packages/bindings-test", version = "0.16.0" } tg4-engagement = { path = "../../contracts/tg4-engagement", version = "0.16.0", features = ["library"] } From 7cfb3dadad2f6415b4b27cb78dfe902d2e59b939 Mon Sep 17 00:00:00 2001 From: Mauro Lacy Date: Fri, 16 Dec 2022 11:45:33 +0100 Subject: [PATCH 07/11] Update cw-storage-plus to latest v1.0.1 --- contracts/tg4-engagement/Cargo.toml | 2 +- contracts/tg4-group/Cargo.toml | 2 +- contracts/tg4-mixer/Cargo.toml | 2 +- contracts/tg4-stake/Cargo.toml | 2 +- contracts/tgrade-gov-reflect/Cargo.toml | 2 +- contracts/tgrade-validator-voting/Cargo.toml | 2 +- contracts/tgrade-valset/Cargo.toml | 2 +- contracts/tgrade-vesting-account/Cargo.toml | 2 +- packages/bindings-test/Cargo.toml | 2 +- packages/utils/Cargo.toml | 2 +- packages/voting-contract/Cargo.toml | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/contracts/tg4-engagement/Cargo.toml b/contracts/tg4-engagement/Cargo.toml index 9308484..cbe1e50 100644 --- a/contracts/tg4-engagement/Cargo.toml +++ b/contracts/tg4-engagement/Cargo.toml @@ -22,7 +22,7 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" cw-controllers = "0.16.0" -cw-storage-plus = "0.16.0" +cw-storage-plus = "1.0.1" cw-utils = "0.16.0" cw2 = "0.16.0" tg-utils = { version = "0.16.0", path = "../../packages/utils" } diff --git a/contracts/tg4-group/Cargo.toml b/contracts/tg4-group/Cargo.toml index 7e509d2..4df2ed9 100644 --- a/contracts/tg4-group/Cargo.toml +++ b/contracts/tg4-group/Cargo.toml @@ -31,7 +31,7 @@ cw-utils = "0.16.0" cw2 = "0.16.0" cw4 = "0.16.0" cw-controllers = "0.16.0" -cw-storage-plus = "0.16.0" +cw-storage-plus = "1.0.1" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } tg4 = { version = "0.16.0", path = "../../packages/tg4" } diff --git a/contracts/tg4-mixer/Cargo.toml b/contracts/tg4-mixer/Cargo.toml index f2bae79..bc59161 100644 --- a/contracts/tg4-mixer/Cargo.toml +++ b/contracts/tg4-mixer/Cargo.toml @@ -26,7 +26,7 @@ cosmwasm-std = "1.1.0" cw-utils = "0.16.0" cw2 = "0.16.0" cw20 = "0.16.0" -cw-storage-plus = "0.16.0" +cw-storage-plus = "1.0.1" integer-sqrt = "0.1.5" rust_decimal = { version = "1.16", default-features = false, features = ["maths"] } rust_decimal_macros = { version = "1.16", default-features = false } diff --git a/contracts/tg4-stake/Cargo.toml b/contracts/tg4-stake/Cargo.toml index ef41f5e..191243f 100644 --- a/contracts/tg4-stake/Cargo.toml +++ b/contracts/tg4-stake/Cargo.toml @@ -24,7 +24,7 @@ cosmwasm-std = "1.1.0" cw-utils = "0.16.0" cw2 = "0.16.0" cw-controllers = "0.16.0" -cw-storage-plus = "0.16.0" +cw-storage-plus = "1.0.1" itertools = "0.10" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } diff --git a/contracts/tgrade-gov-reflect/Cargo.toml b/contracts/tgrade-gov-reflect/Cargo.toml index 06a4466..8d53b42 100644 --- a/contracts/tgrade-gov-reflect/Cargo.toml +++ b/contracts/tgrade-gov-reflect/Cargo.toml @@ -25,7 +25,7 @@ backtraces = ["cosmwasm-std/backtraces"] [dependencies] cosmwasm-std = "1.1.0" -cw-storage-plus = "0.16.0" +cw-storage-plus = "1.0.1" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } tg-bindings = { version = "0.16.0", path = "../../packages/bindings" } diff --git a/contracts/tgrade-validator-voting/Cargo.toml b/contracts/tgrade-validator-voting/Cargo.toml index 73fdda0..3e3bf11 100644 --- a/contracts/tgrade-validator-voting/Cargo.toml +++ b/contracts/tgrade-validator-voting/Cargo.toml @@ -32,7 +32,7 @@ thiserror = "1" anyhow = "1" cosmwasm-schema = "1.1.0" cw-multi-test = "0.16.2" -cw-storage-plus = "0.16.0" +cw-storage-plus = "1.0.1" tg-bindings-test = { version = "0.16.0", path = "../../packages/bindings-test" } tg-utils = { version = "0.16.0", path = "../../packages/utils" } tg-voting-contract = { version = "0.16.0", path = "../../packages/voting-contract" } diff --git a/contracts/tgrade-valset/Cargo.toml b/contracts/tgrade-valset/Cargo.toml index be1e04f..ac43518 100644 --- a/contracts/tgrade-valset/Cargo.toml +++ b/contracts/tgrade-valset/Cargo.toml @@ -30,7 +30,7 @@ cosmwasm-std = "1.1.0" cw2 = "0.16.0" cw-utils = "0.16.0" cw-controllers = "0.16.0" -cw-storage-plus = "0.16.0" +cw-storage-plus = "1.0.1" schemars = "0.8" semver = "1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } diff --git a/contracts/tgrade-vesting-account/Cargo.toml b/contracts/tgrade-vesting-account/Cargo.toml index 141c9b9..d72a854 100644 --- a/contracts/tgrade-vesting-account/Cargo.toml +++ b/contracts/tgrade-vesting-account/Cargo.toml @@ -19,7 +19,7 @@ library = [] cosmwasm-std = "1.1.0" cw-utils = "0.16.0" cw2 = "0.16.0" -cw-storage-plus = "0.16.0" +cw-storage-plus = "1.0.1" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } tg-bindings = { version = "0.16.0", path = "../../packages/bindings" } diff --git a/packages/bindings-test/Cargo.toml b/packages/bindings-test/Cargo.toml index ad11aae..ff0b968 100644 --- a/packages/bindings-test/Cargo.toml +++ b/packages/bindings-test/Cargo.toml @@ -12,7 +12,7 @@ license = "Apache-2.0" anyhow = "1" cosmwasm-std = "1.1.0" cw-multi-test = "0.16.2" -cw-storage-plus = "0.16.0" +cw-storage-plus = "1.0.1" schemars = "0.8" serde = { version = "1.0.103", default-features = false, features = ["derive"] } tg-bindings = { version = "0.16.0", path = "../bindings" } diff --git a/packages/utils/Cargo.toml b/packages/utils/Cargo.toml index 3ab3ed0..28277bf 100644 --- a/packages/utils/Cargo.toml +++ b/packages/utils/Cargo.toml @@ -14,7 +14,7 @@ license = "Apache-2.0" cosmwasm-std = "1.1.0" cw-utils = "0.16.0" cw-controllers = "0.16.0" -cw-storage-plus = "0.16.0" +cw-storage-plus = "1.0.1" cw2 = "0.16.0" schemars = "0.8.1" semver = "1" diff --git a/packages/voting-contract/Cargo.toml b/packages/voting-contract/Cargo.toml index 8dd2ce4..3040184 100644 --- a/packages/voting-contract/Cargo.toml +++ b/packages/voting-contract/Cargo.toml @@ -13,7 +13,7 @@ license = "Apache-2.0" [dependencies] cosmwasm-std = "1.1.0" cw-utils = "0.16.0" -cw-storage-plus = "0.16.0" +cw-storage-plus = "1.0.1" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } tg3 = { path = "../../packages/tg3", version = "0.16.0" } From 7d808748aef03fb998467e5e1f3f917fa1e2ab98 Mon Sep 17 00:00:00 2001 From: Mauro Lacy Date: Fri, 16 Dec 2022 11:48:11 +0100 Subject: [PATCH 08/11] Update cw-utils to latest v1.0.1 --- contracts/tg4-engagement/Cargo.toml | 2 +- contracts/tg4-group/Cargo.toml | 2 +- contracts/tg4-mixer/Cargo.toml | 2 +- contracts/tg4-stake/Cargo.toml | 2 +- contracts/tgrade-community-pool/Cargo.toml | 2 +- contracts/tgrade-validator-voting/Cargo.toml | 2 +- contracts/tgrade-valset/Cargo.toml | 2 +- contracts/tgrade-vesting-account/Cargo.toml | 2 +- packages/utils/Cargo.toml | 2 +- packages/voting-contract/Cargo.toml | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/contracts/tg4-engagement/Cargo.toml b/contracts/tg4-engagement/Cargo.toml index cbe1e50..c6e8c91 100644 --- a/contracts/tg4-engagement/Cargo.toml +++ b/contracts/tg4-engagement/Cargo.toml @@ -23,7 +23,7 @@ library = [] cosmwasm-std = "1.1.0" cw-controllers = "0.16.0" cw-storage-plus = "1.0.1" -cw-utils = "0.16.0" +cw-utils = "1.0.1" cw2 = "0.16.0" tg-utils = { version = "0.16.0", path = "../../packages/utils" } tg-bindings = { version = "0.16.0", path = "../../packages/bindings" } diff --git a/contracts/tg4-group/Cargo.toml b/contracts/tg4-group/Cargo.toml index 4df2ed9..dbf36ea 100644 --- a/contracts/tg4-group/Cargo.toml +++ b/contracts/tg4-group/Cargo.toml @@ -27,7 +27,7 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" -cw-utils = "0.16.0" +cw-utils = "1.0.1" cw2 = "0.16.0" cw4 = "0.16.0" cw-controllers = "0.16.0" diff --git a/contracts/tg4-mixer/Cargo.toml b/contracts/tg4-mixer/Cargo.toml index bc59161..db6cec8 100644 --- a/contracts/tg4-mixer/Cargo.toml +++ b/contracts/tg4-mixer/Cargo.toml @@ -23,7 +23,7 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" -cw-utils = "0.16.0" +cw-utils = "1.0.1" cw2 = "0.16.0" cw20 = "0.16.0" cw-storage-plus = "1.0.1" diff --git a/contracts/tg4-stake/Cargo.toml b/contracts/tg4-stake/Cargo.toml index 191243f..476cc75 100644 --- a/contracts/tg4-stake/Cargo.toml +++ b/contracts/tg4-stake/Cargo.toml @@ -21,7 +21,7 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" -cw-utils = "0.16.0" +cw-utils = "1.0.1" cw2 = "0.16.0" cw-controllers = "0.16.0" cw-storage-plus = "1.0.1" diff --git a/contracts/tgrade-community-pool/Cargo.toml b/contracts/tgrade-community-pool/Cargo.toml index ab0e7ca..bb832d5 100644 --- a/contracts/tgrade-community-pool/Cargo.toml +++ b/contracts/tgrade-community-pool/Cargo.toml @@ -18,7 +18,7 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" -cw-utils = "0.16.0" +cw-utils = "1.0.1" cw2 = "0.16.0" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } diff --git a/contracts/tgrade-validator-voting/Cargo.toml b/contracts/tgrade-validator-voting/Cargo.toml index 3e3bf11..45ff333 100644 --- a/contracts/tgrade-validator-voting/Cargo.toml +++ b/contracts/tgrade-validator-voting/Cargo.toml @@ -18,7 +18,7 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" -cw-utils = "0.16.0" +cw-utils = "1.0.1" cw2 = "0.16.0" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } diff --git a/contracts/tgrade-valset/Cargo.toml b/contracts/tgrade-valset/Cargo.toml index ac43518..b341180 100644 --- a/contracts/tgrade-valset/Cargo.toml +++ b/contracts/tgrade-valset/Cargo.toml @@ -28,7 +28,7 @@ integration = ["bech32", "cosmwasm-vm"] [dependencies] cosmwasm-std = "1.1.0" cw2 = "0.16.0" -cw-utils = "0.16.0" +cw-utils = "1.0.1" cw-controllers = "0.16.0" cw-storage-plus = "1.0.1" schemars = "0.8" diff --git a/contracts/tgrade-vesting-account/Cargo.toml b/contracts/tgrade-vesting-account/Cargo.toml index d72a854..a801e8e 100644 --- a/contracts/tgrade-vesting-account/Cargo.toml +++ b/contracts/tgrade-vesting-account/Cargo.toml @@ -17,7 +17,7 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" -cw-utils = "0.16.0" +cw-utils = "1.0.1" cw2 = "0.16.0" cw-storage-plus = "1.0.1" schemars = "0.8.1" diff --git a/packages/utils/Cargo.toml b/packages/utils/Cargo.toml index 28277bf..ef5c9bf 100644 --- a/packages/utils/Cargo.toml +++ b/packages/utils/Cargo.toml @@ -12,7 +12,7 @@ license = "Apache-2.0" [dependencies] cosmwasm-std = "1.1.0" -cw-utils = "0.16.0" +cw-utils = "1.0.1" cw-controllers = "0.16.0" cw-storage-plus = "1.0.1" cw2 = "0.16.0" diff --git a/packages/voting-contract/Cargo.toml b/packages/voting-contract/Cargo.toml index 3040184..8c6afec 100644 --- a/packages/voting-contract/Cargo.toml +++ b/packages/voting-contract/Cargo.toml @@ -12,7 +12,7 @@ license = "Apache-2.0" [dependencies] cosmwasm-std = "1.1.0" -cw-utils = "0.16.0" +cw-utils = "1.0.1" cw-storage-plus = "1.0.1" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } From cf7a760800964b8e59102b255e8fa90eda0c7bc0 Mon Sep 17 00:00:00 2001 From: Mauro Lacy Date: Fri, 16 Dec 2022 11:52:49 +0100 Subject: [PATCH 09/11] Update cw-utils packages to latest v1.0.0 --- contracts/tg4-engagement/Cargo.toml | 4 ++-- contracts/tg4-group/Cargo.toml | 4 ++-- contracts/tg4-mixer/Cargo.toml | 2 +- contracts/tg4-stake/Cargo.toml | 4 ++-- contracts/tgrade-community-pool/Cargo.toml | 2 +- contracts/tgrade-validator-voting/Cargo.toml | 2 +- contracts/tgrade-valset/Cargo.toml | 4 ++-- contracts/tgrade-vesting-account/Cargo.toml | 2 +- packages/utils/Cargo.toml | 4 ++-- 9 files changed, 14 insertions(+), 14 deletions(-) diff --git a/contracts/tg4-engagement/Cargo.toml b/contracts/tg4-engagement/Cargo.toml index c6e8c91..ff62a4d 100644 --- a/contracts/tg4-engagement/Cargo.toml +++ b/contracts/tg4-engagement/Cargo.toml @@ -21,10 +21,10 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" -cw-controllers = "0.16.0" +cw-controllers = "1.0.0" cw-storage-plus = "1.0.1" cw-utils = "1.0.1" -cw2 = "0.16.0" +cw2 = "1.0.0" tg-utils = { version = "0.16.0", path = "../../packages/utils" } tg-bindings = { version = "0.16.0", path = "../../packages/bindings" } tg4 = { path = "../../packages/tg4", version = "0.16.0" } diff --git a/contracts/tg4-group/Cargo.toml b/contracts/tg4-group/Cargo.toml index dbf36ea..92213d5 100644 --- a/contracts/tg4-group/Cargo.toml +++ b/contracts/tg4-group/Cargo.toml @@ -28,9 +28,9 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" cw-utils = "1.0.1" -cw2 = "0.16.0" +cw2 = "1.0.0" cw4 = "0.16.0" -cw-controllers = "0.16.0" +cw-controllers = "1.0.0" cw-storage-plus = "1.0.1" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } diff --git a/contracts/tg4-mixer/Cargo.toml b/contracts/tg4-mixer/Cargo.toml index db6cec8..2fcf9fe 100644 --- a/contracts/tg4-mixer/Cargo.toml +++ b/contracts/tg4-mixer/Cargo.toml @@ -24,7 +24,7 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" cw-utils = "1.0.1" -cw2 = "0.16.0" +cw2 = "1.0.0" cw20 = "0.16.0" cw-storage-plus = "1.0.1" integer-sqrt = "0.1.5" diff --git a/contracts/tg4-stake/Cargo.toml b/contracts/tg4-stake/Cargo.toml index 476cc75..350320c 100644 --- a/contracts/tg4-stake/Cargo.toml +++ b/contracts/tg4-stake/Cargo.toml @@ -22,8 +22,8 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" cw-utils = "1.0.1" -cw2 = "0.16.0" -cw-controllers = "0.16.0" +cw2 = "1.0.0" +cw-controllers = "1.0.0" cw-storage-plus = "1.0.1" itertools = "0.10" schemars = "0.8.1" diff --git a/contracts/tgrade-community-pool/Cargo.toml b/contracts/tgrade-community-pool/Cargo.toml index bb832d5..51d3b22 100644 --- a/contracts/tgrade-community-pool/Cargo.toml +++ b/contracts/tgrade-community-pool/Cargo.toml @@ -19,7 +19,7 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" cw-utils = "1.0.1" -cw2 = "0.16.0" +cw2 = "1.0.0" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } tg-bindings = { path = "../../packages/bindings", version = "0.16.0" } diff --git a/contracts/tgrade-validator-voting/Cargo.toml b/contracts/tgrade-validator-voting/Cargo.toml index 45ff333..4cbe390 100644 --- a/contracts/tgrade-validator-voting/Cargo.toml +++ b/contracts/tgrade-validator-voting/Cargo.toml @@ -19,7 +19,7 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" cw-utils = "1.0.1" -cw2 = "0.16.0" +cw2 = "1.0.0" schemars = "0.8.1" serde = { version = "1", default-features = false, features = ["derive"] } tg-bindings = { path = "../../packages/bindings", version = "0.16.0" } diff --git a/contracts/tgrade-valset/Cargo.toml b/contracts/tgrade-valset/Cargo.toml index b341180..e623e2b 100644 --- a/contracts/tgrade-valset/Cargo.toml +++ b/contracts/tgrade-valset/Cargo.toml @@ -27,9 +27,9 @@ integration = ["bech32", "cosmwasm-vm"] [dependencies] cosmwasm-std = "1.1.0" -cw2 = "0.16.0" +cw2 = "1.0.0" cw-utils = "1.0.1" -cw-controllers = "0.16.0" +cw-controllers = "1.0.0" cw-storage-plus = "1.0.1" schemars = "0.8" semver = "1" diff --git a/contracts/tgrade-vesting-account/Cargo.toml b/contracts/tgrade-vesting-account/Cargo.toml index a801e8e..c62bb2e 100644 --- a/contracts/tgrade-vesting-account/Cargo.toml +++ b/contracts/tgrade-vesting-account/Cargo.toml @@ -18,7 +18,7 @@ library = [] [dependencies] cosmwasm-std = "1.1.0" cw-utils = "1.0.1" -cw2 = "0.16.0" +cw2 = "1.0.0" cw-storage-plus = "1.0.1" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } diff --git a/packages/utils/Cargo.toml b/packages/utils/Cargo.toml index ef5c9bf..ff429d6 100644 --- a/packages/utils/Cargo.toml +++ b/packages/utils/Cargo.toml @@ -13,9 +13,9 @@ license = "Apache-2.0" [dependencies] cosmwasm-std = "1.1.0" cw-utils = "1.0.1" -cw-controllers = "0.16.0" +cw-controllers = "1.0.0" cw-storage-plus = "1.0.1" -cw2 = "0.16.0" +cw2 = "1.0.0" schemars = "0.8.1" semver = "1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } From 4a262e8a0c0b7c41c86ddca28648e96600514814 Mon Sep 17 00:00:00 2001 From: Mauro Lacy Date: Fri, 16 Dec 2022 11:57:10 +0100 Subject: [PATCH 10/11] Set cosmwasm packages explicitly to latest v1.1.x (1.1.9) --- contracts/tg4-engagement/Cargo.toml | 4 ++-- contracts/tg4-group/Cargo.toml | 4 ++-- contracts/tg4-mixer/Cargo.toml | 4 ++-- contracts/tg4-stake/Cargo.toml | 4 ++-- contracts/tgrade-community-pool/Cargo.toml | 4 ++-- contracts/tgrade-gov-reflect/Cargo.toml | 4 ++-- contracts/tgrade-validator-voting/Cargo.toml | 4 ++-- contracts/tgrade-valset/Cargo.toml | 4 ++-- contracts/tgrade-vesting-account/Cargo.toml | 4 ++-- packages/bindings-test/Cargo.toml | 2 +- packages/bindings/Cargo.toml | 4 ++-- packages/test-utils/Cargo.toml | 2 +- packages/tg3/Cargo.toml | 4 ++-- packages/tg4/Cargo.toml | 4 ++-- packages/utils/Cargo.toml | 2 +- packages/voting-contract/Cargo.toml | 4 ++-- 16 files changed, 29 insertions(+), 29 deletions(-) diff --git a/contracts/tg4-engagement/Cargo.toml b/contracts/tg4-engagement/Cargo.toml index ff62a4d..c2d99eb 100644 --- a/contracts/tg4-engagement/Cargo.toml +++ b/contracts/tg4-engagement/Cargo.toml @@ -20,7 +20,7 @@ backtraces = ["cosmwasm-std/backtraces"] library = [] [dependencies] -cosmwasm-std = "1.1.0" +cosmwasm-std = "1.1.9" cw-controllers = "1.0.0" cw-storage-plus = "1.0.1" cw-utils = "1.0.1" @@ -34,7 +34,7 @@ thiserror = "1.0.21" [dev-dependencies] anyhow = "1" -cosmwasm-schema = "1.1.0" +cosmwasm-schema = "1.1.9" cw-multi-test = "0.16.2" derivative = "2" tg-bindings-test = { version = "0.16.0", path = "../../packages/bindings-test" } diff --git a/contracts/tg4-group/Cargo.toml b/contracts/tg4-group/Cargo.toml index 92213d5..083b8c7 100644 --- a/contracts/tg4-group/Cargo.toml +++ b/contracts/tg4-group/Cargo.toml @@ -26,7 +26,7 @@ backtraces = ["cosmwasm-std/backtraces"] library = [] [dependencies] -cosmwasm-std = "1.1.0" +cosmwasm-std = "1.1.9" cw-utils = "1.0.1" cw2 = "1.0.0" cw4 = "0.16.0" @@ -38,4 +38,4 @@ tg4 = { version = "0.16.0", path = "../../packages/tg4" } thiserror = { version = "1.0.23" } [dev-dependencies] -cosmwasm-schema = "1.1.0" +cosmwasm-schema = "1.1.9" diff --git a/contracts/tg4-mixer/Cargo.toml b/contracts/tg4-mixer/Cargo.toml index 2fcf9fe..286add8 100644 --- a/contracts/tg4-mixer/Cargo.toml +++ b/contracts/tg4-mixer/Cargo.toml @@ -22,7 +22,7 @@ backtraces = ["cosmwasm-std/backtraces"] library = [] [dependencies] -cosmwasm-std = "1.1.0" +cosmwasm-std = "1.1.9" cw-utils = "1.0.1" cw2 = "1.0.0" cw20 = "0.16.0" @@ -38,7 +38,7 @@ tg-utils = { path = "../../packages/utils", version = "0.16.0" } tg-bindings = { path = "../../packages/bindings", version = "0.16.0" } [dev-dependencies] -cosmwasm-schema = "1.1.0" +cosmwasm-schema = "1.1.9" # bench dependencies cosmwasm-vm = { version = "1.1.0" } cw-multi-test = "0.16.2" diff --git a/contracts/tg4-stake/Cargo.toml b/contracts/tg4-stake/Cargo.toml index 350320c..2ae9479 100644 --- a/contracts/tg4-stake/Cargo.toml +++ b/contracts/tg4-stake/Cargo.toml @@ -20,7 +20,7 @@ backtraces = ["cosmwasm-std/backtraces"] library = [] [dependencies] -cosmwasm-std = "1.1.0" +cosmwasm-std = "1.1.9" cw-utils = "1.0.1" cw2 = "1.0.0" cw-controllers = "1.0.0" @@ -34,5 +34,5 @@ tg-bindings = { path = "../../packages/bindings", version = "0.16.0" } thiserror = "1.0.21" [dev-dependencies] -cosmwasm-schema = "1.1.0" +cosmwasm-schema = "1.1.9" tg-bindings-test = { path = "../../packages/bindings-test", version = "0.16.0" } diff --git a/contracts/tgrade-community-pool/Cargo.toml b/contracts/tgrade-community-pool/Cargo.toml index 51d3b22..eb58912 100644 --- a/contracts/tgrade-community-pool/Cargo.toml +++ b/contracts/tgrade-community-pool/Cargo.toml @@ -17,7 +17,7 @@ backtraces = ["cosmwasm-std/backtraces"] library = [] [dependencies] -cosmwasm-std = "1.1.0" +cosmwasm-std = "1.1.9" cw-utils = "1.0.1" cw2 = "1.0.0" schemars = "0.8.1" @@ -31,7 +31,7 @@ thiserror = "1" [dev-dependencies] anyhow = "1" -cosmwasm-schema = "1.1.0" +cosmwasm-schema = "1.1.9" cw-multi-test = "0.16.2" tg-bindings-test = { path = "../../packages/bindings-test", version = "0.16.0" } tg4 = { path = "../../packages/tg4", version = "0.16.0" } diff --git a/contracts/tgrade-gov-reflect/Cargo.toml b/contracts/tgrade-gov-reflect/Cargo.toml index 8d53b42..da6ce0d 100644 --- a/contracts/tgrade-gov-reflect/Cargo.toml +++ b/contracts/tgrade-gov-reflect/Cargo.toml @@ -24,7 +24,7 @@ crate-type = ["cdylib", "rlib"] backtraces = ["cosmwasm-std/backtraces"] [dependencies] -cosmwasm-std = "1.1.0" +cosmwasm-std = "1.1.9" cw-storage-plus = "1.0.1" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } @@ -32,4 +32,4 @@ tg-bindings = { version = "0.16.0", path = "../../packages/bindings" } thiserror = "1" [dev-dependencies] -cosmwasm-schema = "1.1.0" +cosmwasm-schema = "1.1.9" diff --git a/contracts/tgrade-validator-voting/Cargo.toml b/contracts/tgrade-validator-voting/Cargo.toml index 4cbe390..0c3b5f7 100644 --- a/contracts/tgrade-validator-voting/Cargo.toml +++ b/contracts/tgrade-validator-voting/Cargo.toml @@ -17,7 +17,7 @@ backtraces = ["cosmwasm-std/backtraces"] library = [] [dependencies] -cosmwasm-std = "1.1.0" +cosmwasm-std = "1.1.9" cw-utils = "1.0.1" cw2 = "1.0.0" schemars = "0.8.1" @@ -30,7 +30,7 @@ thiserror = "1" [dev-dependencies] anyhow = "1" -cosmwasm-schema = "1.1.0" +cosmwasm-schema = "1.1.9" cw-multi-test = "0.16.2" cw-storage-plus = "1.0.1" tg-bindings-test = { version = "0.16.0", path = "../../packages/bindings-test" } diff --git a/contracts/tgrade-valset/Cargo.toml b/contracts/tgrade-valset/Cargo.toml index e623e2b..39a2a18 100644 --- a/contracts/tgrade-valset/Cargo.toml +++ b/contracts/tgrade-valset/Cargo.toml @@ -26,7 +26,7 @@ library = [] integration = ["bech32", "cosmwasm-vm"] [dependencies] -cosmwasm-std = "1.1.0" +cosmwasm-std = "1.1.9" cw2 = "1.0.0" cw-utils = "1.0.1" cw-controllers = "1.0.0" @@ -46,7 +46,7 @@ cosmwasm-vm = { version = "1.1.0", optional = true, default-features = false, fe [dev-dependencies] anyhow = "1" assert_matches = "1.5" -cosmwasm-schema = "1.1.0" +cosmwasm-schema = "1.1.9" cw-multi-test = "0.16.2" derivative = "2" tg4-engagement = { path = "../tg4-engagement", version = "0.16.0" } diff --git a/contracts/tgrade-vesting-account/Cargo.toml b/contracts/tgrade-vesting-account/Cargo.toml index c62bb2e..659ae67 100644 --- a/contracts/tgrade-vesting-account/Cargo.toml +++ b/contracts/tgrade-vesting-account/Cargo.toml @@ -16,7 +16,7 @@ crate-type = ["cdylib", "rlib"] library = [] [dependencies] -cosmwasm-std = "1.1.0" +cosmwasm-std = "1.1.9" cw-utils = "1.0.1" cw2 = "1.0.0" cw-storage-plus = "1.0.1" @@ -30,6 +30,6 @@ thiserror = "1" anyhow = "1" assert_matches = "1" derivative = "2" -cosmwasm-schema = "1.1.0" +cosmwasm-schema = "1.1.9" cw-multi-test = "0.16.2" tg-bindings-test = { version = "0.16.0", path = "../../packages/bindings-test" } diff --git a/packages/bindings-test/Cargo.toml b/packages/bindings-test/Cargo.toml index ff0b968..de689de 100644 --- a/packages/bindings-test/Cargo.toml +++ b/packages/bindings-test/Cargo.toml @@ -10,7 +10,7 @@ license = "Apache-2.0" [dependencies] anyhow = "1" -cosmwasm-std = "1.1.0" +cosmwasm-std = "1.1.9" cw-multi-test = "0.16.2" cw-storage-plus = "1.0.1" schemars = "0.8" diff --git a/packages/bindings/Cargo.toml b/packages/bindings/Cargo.toml index 3e38748..bd0b74d 100644 --- a/packages/bindings/Cargo.toml +++ b/packages/bindings/Cargo.toml @@ -10,11 +10,11 @@ license = "Apache-2.0" [dependencies] base64 = "0.13" -cosmwasm-std = "1.1.0" +cosmwasm-std = "1.1.9" schemars = "0.8" sha2 = "0.9" serde = { version = "1.0.103", default-features = false, features = ["derive"] } [dev-dependencies] -cosmwasm-schema = "1.1.0" +cosmwasm-schema = "1.1.9" hex-literal = "0.3.1" diff --git a/packages/test-utils/Cargo.toml b/packages/test-utils/Cargo.toml index 937782f..da5f577 100644 --- a/packages/test-utils/Cargo.toml +++ b/packages/test-utils/Cargo.toml @@ -9,5 +9,5 @@ homepage = "https://tgrade.finance" license = "Apache-2.0" [dependencies] -cosmwasm-std = "1.1.0" +cosmwasm-std = "1.1.9" tg-voting-contract = { path = "../voting-contract", version = "0.16.0" } diff --git a/packages/tg3/Cargo.toml b/packages/tg3/Cargo.toml index 9a2036c..91ec25b 100644 --- a/packages/tg3/Cargo.toml +++ b/packages/tg3/Cargo.toml @@ -9,11 +9,11 @@ homepage = "https://tgrade.finance" license = "Apache-2.0" [dependencies] -cosmwasm-std = "1.1.0" +cosmwasm-std = "1.1.9" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } tg-bindings = { version = "0.16.0", path = "../../packages/bindings" } tg-utils = { version = "0.16.0", path = "../../packages/utils" } [dev-dependencies] -cosmwasm-schema = "1.1.0" +cosmwasm-schema = "1.1.9" diff --git a/packages/tg4/Cargo.toml b/packages/tg4/Cargo.toml index 9a80a13..4c9357a 100644 --- a/packages/tg4/Cargo.toml +++ b/packages/tg4/Cargo.toml @@ -9,10 +9,10 @@ homepage = "https://tgrade.finance" license = "Apache-2.0" [dependencies] -cosmwasm-std = "1.1.0" +cosmwasm-std = "1.1.9" schemars = "0.8.1" serde = { version = "1.0.103", default-features = false, features = ["derive"] } tg-bindings = { path = "../bindings", version = "0.16.0" } [dev-dependencies] -cosmwasm-schema = "1.1.0" +cosmwasm-schema = "1.1.9" diff --git a/packages/utils/Cargo.toml b/packages/utils/Cargo.toml index ff429d6..5aa3a40 100644 --- a/packages/utils/Cargo.toml +++ b/packages/utils/Cargo.toml @@ -11,7 +11,7 @@ license = "Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -cosmwasm-std = "1.1.0" +cosmwasm-std = "1.1.9" cw-utils = "1.0.1" cw-controllers = "1.0.0" cw-storage-plus = "1.0.1" diff --git a/packages/voting-contract/Cargo.toml b/packages/voting-contract/Cargo.toml index 8c6afec..c5083f2 100644 --- a/packages/voting-contract/Cargo.toml +++ b/packages/voting-contract/Cargo.toml @@ -11,7 +11,7 @@ license = "Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -cosmwasm-std = "1.1.0" +cosmwasm-std = "1.1.9" cw-utils = "1.0.1" cw-storage-plus = "1.0.1" schemars = "0.8.1" @@ -24,7 +24,7 @@ thiserror = "1" [dev-dependencies] anyhow = "1" -cosmwasm-schema = "1.1.0" +cosmwasm-schema = "1.1.9" cw-multi-test = "0.16.2" derivative = "2" tg-bindings-test = { path = "../../packages/bindings-test", version = "0.16.0" } From c81096498e95f0fdb29254c23cc601117d2aa01b Mon Sep 17 00:00:00 2001 From: Mauro Lacy Date: Fri, 16 Dec 2022 12:02:44 +0100 Subject: [PATCH 11/11] Update lock file --- Cargo.lock | 144 ++++++++++++++++++++++++++++++++++------------------- 1 file changed, 92 insertions(+), 52 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 747940a..81af402 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -193,9 +193,9 @@ dependencies = [ [[package]] name = "cosmwasm-crypto" -version = "1.1.1" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10cb32eb596428347033db2da3028558ef8ec506ae00605932eef4b24972baa2" +checksum = "227315dc11f0bb22a273d0c43d3ba8ef52041c42cf959f09045388a89c57e661" dependencies = [ "digest 0.10.5", "ed25519-zebra", @@ -206,18 +206,18 @@ dependencies = [ [[package]] name = "cosmwasm-derive" -version = "1.1.1" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0faf3a02389f78d6173b7e680751205015d5406f8abbaa9aa36fd216adc9f10d" +checksum = "6fca30d51f7e5fbfa6440d8b10d7df0231bdf77e97fd3fe5d0cb79cc4822e50c" dependencies = [ "syn", ] [[package]] name = "cosmwasm-schema" -version = "1.1.1" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d5d13e9ee950418b0ac90a2579b8769640e0b07e6d06d9d5f5b512ba64265e5a" +checksum = "04135971e2c3b867eb793ca4e832543c077dbf72edaef7672699190f8fcdb619" dependencies = [ "cosmwasm-schema-derive", "schemars", @@ -228,9 +228,9 @@ dependencies = [ [[package]] name = "cosmwasm-schema-derive" -version = "1.1.1" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73d5e04d338db6af813d0633fe9ab6a5cd36ae83796ca769ae13d6910a5861df" +checksum = "a06c8f516a13ae481016aa35f0b5c4652459e8aee65b15b6fb51547a07cea5a0" dependencies = [ "proc-macro2", "quote", @@ -239,15 +239,16 @@ dependencies = [ [[package]] name = "cosmwasm-std" -version = "1.1.1" +version = "1.1.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3409b349f282924c8099b554aae6fe70e4eb97d6a64697ae13c8be25a7eb158" +checksum = "b13d5a84d15cf7be17dc249a21588cdb0f7ef308907c50ce2723316a7d79c3dc" dependencies = [ "base64", "cosmwasm-crypto", "cosmwasm-derive", "derivative", "forward_ref", + "hex", "schemars", "serde", "serde-json-wasm", @@ -441,14 +442,14 @@ dependencies = [ [[package]] name = "cw-controllers" -version = "0.16.0" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24bd6738c3fd59c87d2f84911c1cad1e4f2d1c58ecaa6e52549b4f78f4ed6f07" +checksum = "343ee0fb235c63a37694b030b48461581d89e119bc37fb4cb456fad90766123b" dependencies = [ "cosmwasm-schema", "cosmwasm-std", - "cw-storage-plus", - "cw-utils", + "cw-storage-plus 0.16.0", + "cw-utils 0.16.0", "schemars", "serde", "thiserror", @@ -456,14 +457,14 @@ dependencies = [ [[package]] name = "cw-multi-test" -version = "0.16.1" +version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dc50fde3ad87ef4e3a3e57c73d11326333318761c7655cc8cae67c40382ac91" +checksum = "c2eb84554bbfa6b66736abcd6a9bfdf237ee0ecb83910f746dff7f799093c80a" dependencies = [ "anyhow", "cosmwasm-std", - "cw-storage-plus", - "cw-utils", + "cw-storage-plus 1.0.1", + "cw-utils 1.0.1", "derivative", "itertools", "k256", @@ -484,6 +485,17 @@ dependencies = [ "serde", ] +[[package]] +name = "cw-storage-plus" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053a5083c258acd68386734f428a5a171b29f7d733151ae83090c6fcc9417ffa" +dependencies = [ + "cosmwasm-std", + "schemars", + "serde", +] + [[package]] name = "cw-utils" version = "0.16.0" @@ -492,7 +504,22 @@ checksum = "d6a84c6c1c0acc3616398eba50783934bd6c964bad6974241eaee3460c8f5b26" dependencies = [ "cosmwasm-schema", "cosmwasm-std", - "cw2", + "cw2 0.16.0", + "schemars", + "semver", + "serde", + "thiserror", +] + +[[package]] +name = "cw-utils" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c80e93d1deccb8588db03945016a292c3c631e6325d349ebb35d2db6f4f946f7" +dependencies = [ + "cosmwasm-schema", + "cosmwasm-std", + "cw2 1.0.0", "schemars", "semver", "serde", @@ -507,7 +534,20 @@ checksum = "91398113b806f4d2a8d5f8d05684704a20ffd5968bf87e3473e1973710b884ad" dependencies = [ "cosmwasm-schema", "cosmwasm-std", - "cw-storage-plus", + "cw-storage-plus 0.16.0", + "schemars", + "serde", +] + +[[package]] +name = "cw2" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03bdf3747540b47bc1bdaf50ba3aa5e4276ab0c2ce73e8b367ebe260cc37ff9c" +dependencies = [ + "cosmwasm-schema", + "cosmwasm-std", + "cw-storage-plus 0.16.0", "schemars", "serde", ] @@ -520,7 +560,7 @@ checksum = "a45a8794a5dd33b66af34caee52a7beceb690856adcc1682b6e3db88b2cdee62" dependencies = [ "cosmwasm-schema", "cosmwasm-std", - "cw-utils", + "cw-utils 0.16.0", "schemars", "serde", ] @@ -533,7 +573,7 @@ checksum = "86a93c2764ddb44038b948d9a9a8aadc9f92f5ef3e61249af2fad16091e43412" dependencies = [ "cosmwasm-schema", "cosmwasm-std", - "cw-storage-plus", + "cw-storage-plus 0.16.0", "schemars", "serde", ] @@ -1613,7 +1653,7 @@ dependencies = [ "anyhow", "cosmwasm-std", "cw-multi-test", - "cw-storage-plus", + "cw-storage-plus 1.0.1", "schemars", "serde", "tg-bindings", @@ -1634,9 +1674,9 @@ version = "0.16.0" dependencies = [ "cosmwasm-std", "cw-controllers", - "cw-storage-plus", - "cw-utils", - "cw2", + "cw-storage-plus 1.0.1", + "cw-utils 1.0.1", + "cw2 1.0.0", "schemars", "semver", "serde", @@ -1653,8 +1693,8 @@ dependencies = [ "cosmwasm-schema", "cosmwasm-std", "cw-multi-test", - "cw-storage-plus", - "cw-utils", + "cw-storage-plus 1.0.1", + "cw-utils 1.0.1", "derivative", "schemars", "serde", @@ -1699,9 +1739,9 @@ dependencies = [ "cosmwasm-std", "cw-controllers", "cw-multi-test", - "cw-storage-plus", - "cw-utils", - "cw2", + "cw-storage-plus 1.0.1", + "cw-utils 1.0.1", + "cw2 1.0.0", "derivative", "schemars", "serde", @@ -1719,9 +1759,9 @@ dependencies = [ "cosmwasm-schema", "cosmwasm-std", "cw-controllers", - "cw-storage-plus", - "cw-utils", - "cw2", + "cw-storage-plus 1.0.1", + "cw-utils 1.0.1", + "cw2 1.0.0", "cw4", "schemars", "serde", @@ -1737,9 +1777,9 @@ dependencies = [ "cosmwasm-std", "cosmwasm-vm", "cw-multi-test", - "cw-storage-plus", - "cw-utils", - "cw2", + "cw-storage-plus 1.0.1", + "cw-utils 1.0.1", + "cw2 1.0.0", "cw20", "integer-sqrt", "rust_decimal", @@ -1761,9 +1801,9 @@ dependencies = [ "cosmwasm-schema", "cosmwasm-std", "cw-controllers", - "cw-storage-plus", - "cw-utils", - "cw2", + "cw-storage-plus 1.0.1", + "cw-utils 1.0.1", + "cw2 1.0.0", "itertools", "schemars", "serde", @@ -1782,8 +1822,8 @@ dependencies = [ "cosmwasm-schema", "cosmwasm-std", "cw-multi-test", - "cw-utils", - "cw2", + "cw-utils 1.0.1", + "cw2 1.0.0", "schemars", "serde", "tg-bindings", @@ -1802,7 +1842,7 @@ version = "0.16.0" dependencies = [ "cosmwasm-schema", "cosmwasm-std", - "cw-storage-plus", + "cw-storage-plus 1.0.1", "schemars", "serde", "tg-bindings", @@ -1817,9 +1857,9 @@ dependencies = [ "cosmwasm-schema", "cosmwasm-std", "cw-multi-test", - "cw-storage-plus", - "cw-utils", - "cw2", + "cw-storage-plus 1.0.1", + "cw-utils 1.0.1", + "cw2 1.0.0", "schemars", "serde", "tg-bindings", @@ -1844,9 +1884,9 @@ dependencies = [ "cosmwasm-vm", "cw-controllers", "cw-multi-test", - "cw-storage-plus", - "cw-utils", - "cw2", + "cw-storage-plus 1.0.1", + "cw-utils 1.0.1", + "cw2 1.0.0", "derivative", "schemars", "semver", @@ -1869,9 +1909,9 @@ dependencies = [ "cosmwasm-schema", "cosmwasm-std", "cw-multi-test", - "cw-storage-plus", - "cw-utils", - "cw2", + "cw-storage-plus 1.0.1", + "cw-utils 1.0.1", + "cw2 1.0.0", "derivative", "schemars", "serde",