Skip to content

Commit e2f07db

Browse files
authored
Merge pull request #699 from envoylabs/the-frey/lowercase-mock-contract-names
Upgrade all contracts and packages to cosmwasm-std beta8
2 parents 85eb643 + 37c0a5a commit e2f07db

File tree

24 files changed

+163
-161
lines changed

24 files changed

+163
-161
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ jobs:
597597
- run:
598598
name: Install check_contract
599599
# Uses --debug for compilation speed
600-
command: cargo install --debug --version 1.0.0-beta6 --features iterator --example check_contract -- cosmwasm-vm
600+
command: cargo install --debug --version 1.0.0-beta8 --features iterator --example check_contract -- cosmwasm-vm
601601
- save_cache:
602602
paths:
603603
- /usr/local/cargo/registry

Cargo.lock

Lines changed: 37 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/cw1-subkeys/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw1-subkeys"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
edition = "2018"
66
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract"
@@ -19,17 +19,17 @@ library = []
1919
test-utils = []
2020

2121
[dependencies]
22-
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
23-
cw1 = { path = "../../packages/cw1", version = "0.13.1" }
24-
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
25-
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.1", features = ["library"] }
26-
cosmwasm-std = { version = "1.0.0-beta6", features = ["staking"] }
27-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.1" }
22+
cw-utils = { path = "../../packages/utils", version = "0.13.2" }
23+
cw1 = { path = "../../packages/cw1", version = "0.13.2" }
24+
cw2 = { path = "../../packages/cw2", version = "0.13.2" }
25+
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.2", features = ["library"] }
26+
cosmwasm-std = { version = "1.0.0-beta8", features = ["staking"] }
27+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.2" }
2828
schemars = "0.8.1"
2929
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
3030
thiserror = "1.0.23"
3131
semver = "1"
3232

3333
[dev-dependencies]
34-
cosmwasm-schema = { version = "1.0.0-beta6" }
35-
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.1", features = ["library", "test-utils"] }
34+
cosmwasm-schema = { version = "1.0.0-beta8" }
35+
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.2", features = ["library", "test-utils"] }

contracts/cw1-whitelist-ng/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw1-whitelist-ng"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = ["Bartłomiej Kuras <bartk@confio.gmbh>"]
55
edition = "2018"
66
description = "Implementation of an proxy contract using a whitelist"
@@ -22,20 +22,20 @@ querier = ["library"]
2222
multitest = ["cw-multi-test", "anyhow"]
2323

2424
[dependencies]
25-
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
26-
cw1 = { path = "../../packages/cw1", version = "0.13.1" }
27-
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
28-
cosmwasm-std = { version = "1.0.0-beta6", features = ["staking"] }
29-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.1" }
25+
cw-utils = { path = "../../packages/utils", version = "0.13.2" }
26+
cw1 = { path = "../../packages/cw1", version = "0.13.2" }
27+
cw2 = { path = "../../packages/cw2", version = "0.13.2" }
28+
cosmwasm-std = { version = "1.0.0-beta8", features = ["staking"] }
29+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.2" }
3030
schemars = "0.8.1"
3131
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
3232
thiserror = { version = "1.0.23" }
33-
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.1", optional = true }
33+
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.2", optional = true }
3434
anyhow = { version = "1", optional = true }
3535

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

contracts/cw1-whitelist/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw1-whitelist"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
edition = "2018"
66
description = "Implementation of an proxy contract using a whitelist"
@@ -19,18 +19,18 @@ library = []
1919
test-utils = []
2020

2121
[dependencies]
22-
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
23-
cw1 = { path = "../../packages/cw1", version = "0.13.1" }
24-
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
25-
cosmwasm-std = { version = "1.0.0-beta6", features = ["staking"] }
26-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.1" }
22+
cw-utils = { path = "../../packages/utils", version = "0.13.2" }
23+
cw1 = { path = "../../packages/cw1", version = "0.13.2" }
24+
cw2 = { path = "../../packages/cw2", version = "0.13.2" }
25+
cosmwasm-std = { version = "1.0.0-beta8", features = ["staking"] }
26+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.2" }
2727
schemars = "0.8.1"
2828
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
2929
thiserror = { version = "1.0.23" }
3030

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

0 commit comments

Comments
 (0)