Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to cw-plus 0.12.1 #103

Merged
merged 40 commits into from
Feb 21, 2022
Merged
Show file tree
Hide file tree
Changes from 38 commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
893f36a
Update cw-plus deps to 0.12.1
maurolacy Feb 14, 2022
0320b17
Update cosmwasm deps to latest version
maurolacy Feb 13, 2022
460c7d4
Update lock file
maurolacy Feb 14, 2022
4583d83
Migrate to type safe bounds
maurolacy Feb 11, 2022
2409885
Migrate claims to new bounds
maurolacy Feb 11, 2022
64c55e5
Fix/improve claims release_at index range
maurolacy Feb 11, 2022
a441255
Improve comment
maurolacy Feb 11, 2022
7b91071
tg4: Support custom queries
maurolacy Feb 12, 2022
f4e664d
voting-contract: Support custom queries
maurolacy Feb 12, 2022
8cdb089
tg4-engagement: Support custom queries
maurolacy Feb 12, 2022
d38fc17
tg4-engagement: Generalize test contract helper
maurolacy Feb 12, 2022
d41d145
tg4-stake: Support custom queries
maurolacy Feb 12, 2022
f7d359c
tgrade-community-pool: Support custom queries
maurolacy Feb 12, 2022
e7e662d
tgrade-community-pool: Generalize test contract helpers
maurolacy Feb 12, 2022
b80ffda
tgrade-validator-voting: Support custom queries
maurolacy Feb 12, 2022
ea1d31c
tgrade-validator-voting: Support custom queries in hackatom helper
maurolacy Feb 12, 2022
e6903f3
tgrade-validator-voting: Generalize test contract helpers
maurolacy Feb 12, 2022
36860a3
tgrade-valset: Support custom queries
maurolacy Feb 12, 2022
805f4bd
tgrade-valset: Generalize test contract helpers
maurolacy Feb 12, 2022
c4fbaa5
tgrade-vesting-account: Support custom queries
maurolacy Feb 12, 2022
4d97aac
tgrade-vesting-account: Generalize test contract helpers
maurolacy Feb 12, 2022
ceebf0c
Fix clippy warnings
maurolacy Feb 12, 2022
986b523
Fix bug in contract helper name
maurolacy Feb 12, 2022
c6b4870
cargo fmt
maurolacy Feb 12, 2022
85b6026
Now use type safe bounds for claims
maurolacy Feb 13, 2022
8753f48
Remove unused import
maurolacy Feb 18, 2022
0ab62ac
Update tg4-group deps to cw-plus 0.12.1
maurolacy Feb 18, 2022
f1efa63
Migrate tg4-group to type-safe bounds
maurolacy Feb 18, 2022
406e3f4
Update lock file
maurolacy Feb 18, 2022
d5c176c
tg4-engagement: Fix entry points custom query
Feb 19, 2022
df99814
tg4-mixer: Support custom queries
Feb 19, 2022
8fd0b0d
tg4-stake: Fix entry points custom query type
Feb 19, 2022
2b2cb3f
tgrade-community-pool: Fix entry points custom query type
Feb 19, 2022
27863c5
tgragde-validator-voting: Fix entry points custom query type
Feb 19, 2022
5fe1e31
Remove redundant type param
Feb 19, 2022
d504dd4
tgrage-valset: Fix entry points custom query type
Feb 19, 2022
662f08b
tgrade-vesting-account: Fix entry points custom query type
Feb 19, 2022
7d54466
Fix syntax
Feb 19, 2022
b1b6d67
Add mock_deps_tgrade() helper
maurolacy Feb 21, 2022
dd288b9
Use mock_deps_tgrade in contract tests
maurolacy Feb 21, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions contracts/tg4-engagement/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw-utils = "0.11.1"
cw2 = "0.11.1"
cw-controllers = "0.11.1"
cw-storage-plus = "0.11.1"
cw-utils = "0.12.1"
cw2 = "0.12.1"
cw-controllers = "0.12.1"
cw-storage-plus = "0.12.1"
tg4 = { path = "../../packages/tg4", version = "0.6.2" }
tg-utils = { version = "0.6.2", path = "../../packages/utils" }
tg-bindings = { version = "0.6.2", path = "../../packages/bindings" }
Expand All @@ -34,7 +34,7 @@ thiserror = { version = "1.0.21" }

[dev-dependencies]
cosmwasm-schema = { version = "1.0.0-beta5" }
cw-multi-test = { version = "0.11.1" }
cw-multi-test = { version = "0.12.1" }
tg-bindings-test = { version = "0.6.2", path = "../../packages/bindings-test" }
derivative = "2"
anyhow = "1"
Loading