Skip to content

Commit

Permalink
Merge pull request #699 from envoylabs/the-frey/lowercase-mock-contra…
Browse files Browse the repository at this point in the history
…ct-names

Upgrade all contracts and packages to cosmwasm-std beta8
  • Loading branch information
webmaster128 committed Apr 11, 2022
2 parents 85eb643 + 37c0a5a commit e2f07db
Show file tree
Hide file tree
Showing 24 changed files with 163 additions and 161 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ jobs:
- run:
name: Install check_contract
# Uses --debug for compilation speed
command: cargo install --debug --version 1.0.0-beta6 --features iterator --example check_contract -- cosmwasm-vm
command: cargo install --debug --version 1.0.0-beta8 --features iterator --example check_contract -- cosmwasm-vm
- save_cache:
paths:
- /usr/local/cargo/registry
Expand Down
73 changes: 37 additions & 36 deletions Cargo.lock

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

18 changes: 9 additions & 9 deletions contracts/cw1-subkeys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw1-subkeys"
version = "0.13.1"
version = "0.13.2"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract"
Expand All @@ -19,17 +19,17 @@ library = []
test-utils = []

[dependencies]
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
cw1 = { path = "../../packages/cw1", version = "0.13.1" }
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.1", features = ["library"] }
cosmwasm-std = { version = "1.0.0-beta6", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.1" }
cw-utils = { path = "../../packages/utils", version = "0.13.2" }
cw1 = { path = "../../packages/cw1", version = "0.13.2" }
cw2 = { path = "../../packages/cw2", version = "0.13.2" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.2", features = ["library"] }
cosmwasm-std = { version = "1.0.0-beta8", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.2" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = "1.0.23"
semver = "1"

[dev-dependencies]
cosmwasm-schema = { version = "1.0.0-beta6" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.1", features = ["library", "test-utils"] }
cosmwasm-schema = { version = "1.0.0-beta8" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.2", features = ["library", "test-utils"] }
18 changes: 9 additions & 9 deletions contracts/cw1-whitelist-ng/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw1-whitelist-ng"
version = "0.13.1"
version = "0.13.2"
authors = ["Bartłomiej Kuras <bartk@confio.gmbh>"]
edition = "2018"
description = "Implementation of an proxy contract using a whitelist"
Expand All @@ -22,20 +22,20 @@ querier = ["library"]
multitest = ["cw-multi-test", "anyhow"]

[dependencies]
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
cw1 = { path = "../../packages/cw1", version = "0.13.1" }
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
cosmwasm-std = { version = "1.0.0-beta6", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.1" }
cw-utils = { path = "../../packages/utils", version = "0.13.2" }
cw1 = { path = "../../packages/cw1", version = "0.13.2" }
cw2 = { path = "../../packages/cw2", version = "0.13.2" }
cosmwasm-std = { version = "1.0.0-beta8", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.2" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.23" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.1", optional = true }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.2", optional = true }
anyhow = { version = "1", optional = true }

[dev-dependencies]
anyhow = "1"
assert_matches = "1"
cosmwasm-schema = { version = "1.0.0-beta6" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.1" }
cosmwasm-schema = { version = "1.0.0-beta8" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.2" }
derivative = "2"
16 changes: 8 additions & 8 deletions contracts/cw1-whitelist/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw1-whitelist"
version = "0.13.1"
version = "0.13.2"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Implementation of an proxy contract using a whitelist"
Expand All @@ -19,18 +19,18 @@ library = []
test-utils = []

[dependencies]
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
cw1 = { path = "../../packages/cw1", version = "0.13.1" }
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
cosmwasm-std = { version = "1.0.0-beta6", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.1" }
cw-utils = { path = "../../packages/utils", version = "0.13.2" }
cw1 = { path = "../../packages/cw1", version = "0.13.2" }
cw2 = { path = "../../packages/cw2", version = "0.13.2" }
cosmwasm-std = { version = "1.0.0-beta8", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.2" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.23" }

[dev-dependencies]
anyhow = "1"
assert_matches = "1"
cosmwasm-schema = { version = "1.0.0-beta6" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.1" }
cosmwasm-schema = { version = "1.0.0-beta8" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.2" }
derivative = "2"

0 comments on commit e2f07db

Please sign in to comment.