Skip to content

Commit

Permalink
Set version: 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
ueco-jb committed Dec 22, 2021
1 parent 011631c commit dabad91
Show file tree
Hide file tree
Showing 26 changed files with 138 additions and 138 deletions.
50 changes: 25 additions & 25 deletions Cargo.lock

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

14 changes: 7 additions & 7 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.10.3"
version = "0.11"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract"
Expand All @@ -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" }
cw1 = { path = "../../packages/cw1", version = "0.11" }
cw2 = { path = "../../packages/cw2", version = "0.11" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.11", 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" }
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", features = ["library", "test-utils"] }
14 changes: 7 additions & 7 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.10.3"
version = "0.11"
authors = ["Bartłomiej Kuras <[email protected]>"]
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]
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" }
cw1 = { path = "../../packages/cw1", version = "0.11" }
cw2 = { path = "../../packages/cw2", version = "0.11" }
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" }
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", 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" }
derivative = "2"
12 changes: 6 additions & 6 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.10.3"
version = "0.11"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Implementation of an proxy contract using a whitelist"
Expand All @@ -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" }
cw1 = { path = "../../packages/cw1", version = "0.11" }
cw2 = { path = "../../packages/cw2", version = "0.11" }
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" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.23" }
Expand All @@ -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" }
derivative = "2"
10 changes: 5 additions & 5 deletions contracts/cw1155-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw1155-base"
version = "0.10.3"
version = "0.11"
authors = ["Huang Yi <[email protected]>"]
edition = "2018"
description = "Basic implementation of a CosmWasm-1155 compliant token"
Expand All @@ -18,10 +18,10 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
utils = { path = "../../packages/utils", version = "0.10.3" }
cw2 = { path = "../../packages/cw2", version = "0.10.3" }
cw1155 = { path = "../../packages/cw1155", version = "0.10.3" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.10.3" }
utils = { path = "../../packages/utils", version = "0.11" }
cw2 = { path = "../../packages/cw2", version = "0.11" }
cw1155 = { path = "../../packages/cw1155", version = "0.11" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11" }
cosmwasm-std = { version = "1.0.0-beta3" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
10 changes: 5 additions & 5 deletions contracts/cw20-atomic-swap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-atomic-swap"
version = "0.10.3"
version = "0.11"
authors = ["Mauro Lacy <[email protected]>"]
edition = "2018"
description = "Implementation of Atomic Swaps"
Expand All @@ -15,11 +15,11 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
utils = { path = "../../packages/utils", version = "0.10.3" }
cw2 = { path = "../../packages/cw2", version = "0.10.3" }
cw20 = { path = "../../packages/cw20", version = "0.10.3" }
utils = { path = "../../packages/utils", version = "0.11" }
cw2 = { path = "../../packages/cw2", version = "0.11" }
cw20 = { path = "../../packages/cw20", version = "0.11" }
cosmwasm-std = { version = "1.0.0-beta3" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.10.3" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.23" }
Expand Down
10 changes: 5 additions & 5 deletions contracts/cw20-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-base"
version = "0.10.3"
version = "0.11"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Basic implementation of a CosmWasm-20 compliant token"
Expand All @@ -18,10 +18,10 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
utils = { path = "../../packages/utils", version = "0.10.3" }
cw2 = { path = "../../packages/cw2", version = "0.10.3" }
cw20 = { path = "../../packages/cw20", version = "0.10.3" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.10.3" }
utils = { path = "../../packages/utils", version = "0.11" }
cw2 = { path = "../../packages/cw2", version = "0.11" }
cw20 = { path = "../../packages/cw20", version = "0.11" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11" }
cosmwasm-std = { version = "1.0.0-beta3" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
Loading

0 comments on commit dabad91

Please sign in to comment.