-
Notifications
You must be signed in to change notification settings - Fork 353
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #594 from CosmWasm/593-set-version-011
Set version: 0.11.0
- Loading branch information
Showing
27 changed files
with
200 additions
and
139 deletions.
There are no files selected for viewing
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cw1-subkeys" | ||
version = "0.10.3" | ||
version = "0.11.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract" | ||
|
@@ -19,17 +19,17 @@ library = [] | |
test-utils = [] | ||
|
||
[dependencies] | ||
utils = { path = "../../packages/utils", version = "0.10.3" } | ||
cw1 = { path = "../../packages/cw1", version = "0.10.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.10.3" } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "0.10.3", features = ["library"] } | ||
utils = { path = "../../packages/utils", version = "0.11.0" } | ||
cw1 = { path = "../../packages/cw1", version = "0.11.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.11.0" } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "0.11.0", features = ["library"] } | ||
cosmwasm-std = { version = "1.0.0-beta3", features = ["staking"] } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.10.3" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11.0" } | ||
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-beta3" } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "0.10.3", features = ["library", "test-utils"] } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "0.11.0", features = ["library", "test-utils"] } |
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,6 @@ | ||
[package] | ||
name = "cw1-whitelist-ng" | ||
version = "0.10.3" | ||
version = "0.11.0" | ||
authors = ["Bartłomiej Kuras <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementation of an proxy contract using a whitelist" | ||
|
@@ -22,20 +22,20 @@ querier = ["library"] | |
multitest = ["cw-multi-test", "anyhow"] | ||
|
||
[dependencies] | ||
utils = { path = "../../packages/utils", version = "0.10.3" } | ||
cw1 = { path = "../../packages/cw1", version = "0.10.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.10.3" } | ||
utils = { path = "../../packages/utils", version = "0.11.0" } | ||
cw1 = { path = "../../packages/cw1", version = "0.11.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.11.0" } | ||
cosmwasm-std = { version = "1.0.0-beta3", features = ["staking"] } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.10.3" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11.0" } | ||
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.10.3", optional = true } | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.11.0", optional = true } | ||
anyhow = { version = "1", optional = true } | ||
|
||
[dev-dependencies] | ||
anyhow = "1" | ||
assert_matches = "1" | ||
cosmwasm-schema = { version = "1.0.0-beta3" } | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.10.3" } | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.11.0" } | ||
derivative = "2" |
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,6 @@ | ||
[package] | ||
name = "cw1-whitelist" | ||
version = "0.10.3" | ||
version = "0.11.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementation of an proxy contract using a whitelist" | ||
|
@@ -19,11 +19,11 @@ library = [] | |
test-utils = [] | ||
|
||
[dependencies] | ||
utils = { path = "../../packages/utils", version = "0.10.3" } | ||
cw1 = { path = "../../packages/cw1", version = "0.10.3" } | ||
cw2 = { path = "../../packages/cw2", version = "0.10.3" } | ||
utils = { path = "../../packages/utils", version = "0.11.0" } | ||
cw1 = { path = "../../packages/cw1", version = "0.11.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.11.0" } | ||
cosmwasm-std = { version = "1.0.0-beta3", features = ["staking"] } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.10.3" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11.0" } | ||
schemars = "0.8.1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
thiserror = { version = "1.0.23" } | ||
|
@@ -32,5 +32,5 @@ thiserror = { version = "1.0.23" } | |
anyhow = "1" | ||
assert_matches = "1" | ||
cosmwasm-schema = { version = "1.0.0-beta3" } | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.10.3" } | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.11.0" } | ||
derivative = "2" |
Oops, something went wrong.