-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump deps and cleanup migration (#432)
* Bump minor cw version. * Update optimizer and rust version. * Mars ver to 2.1.0, cleanup migrations, fix clippy.
- Loading branch information
Showing
82 changed files
with
148 additions
and
1,852 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,13 +38,13 @@ members = [ | |
] | ||
|
||
[workspace.package] | ||
version = "2.0.0" | ||
version = "2.1.0" | ||
authors = [ | ||
"Gabe R. <[email protected]>", | ||
"Larry Engineer <[email protected]>", | ||
"Piotr B. <[email protected]>", | ||
"Piotr B. <[email protected]>", | ||
"Bob v.d. H. <[email protected]>", | ||
"Mark Watney <[email protected]>", | ||
"Gabe R. <[email protected]>", | ||
"Larry Engineer <[email protected]>", | ||
"Spike Spiegel <[email protected]>", | ||
"Brianna M. <[email protected]>", | ||
"Ahmad Kaouk", | ||
|
@@ -64,8 +64,8 @@ apollo-utils = "0.1.2" | |
astroport = "2.8.0" | ||
astroport-v5 = { package = "astroport", version = "5.2.0" } | ||
bech32 = "0.11.0" | ||
cosmwasm-schema = "1.5.5" | ||
cosmwasm-std = "1.5.5" | ||
cosmwasm-schema = "1.5.7" | ||
cosmwasm-std = "1.5.7" | ||
cw2 = "1.1.2" | ||
cw721 = { git = "https://github.com/CosmWasm/cw-nfts/", branch = "main" } | ||
cw721-base = { git = "https://github.com/CosmWasm/cw-nfts/", branch = "main", features = ["library"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
pub mod contract; | ||
pub mod error; | ||
pub mod execute; | ||
pub mod migrations; | ||
pub mod query; | ||
pub mod state; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
mod helpers; | ||
|
||
mod test_burn_allowance; | ||
mod test_burn_empty_accounts; | ||
mod test_instantiate; | ||
mod test_migration; | ||
mod test_mint; | ||
mod test_proposed_minter; | ||
mod test_update_config; |
Oops, something went wrong.