-
Notifications
You must be signed in to change notification settings - Fork 356
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 #829 from CosmWasm/jakub/set-version-0-15-2
Set version 0.16.0
- Loading branch information
Showing
22 changed files
with
132 additions
and
103 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.15.1" | ||
version = "0.16.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract" | ||
|
@@ -20,16 +20,16 @@ test-utils = [] | |
|
||
[dependencies] | ||
cosmwasm-schema = { version = "1.1.0" } | ||
cw-utils = { path = "../../packages/utils", version = "0.15.1" } | ||
cw1 = { path = "../../packages/cw1", version = "0.15.1" } | ||
cw2 = { path = "../../packages/cw2", version = "0.15.1" } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "0.15.1", features = ["library"] } | ||
cw-utils = { path = "../../packages/utils", version = "0.16.0" } | ||
cw1 = { path = "../../packages/cw1", version = "0.16.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.16.0" } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "0.16.0", features = ["library"] } | ||
cosmwasm-std = { version = "1.1.0", features = ["staking"] } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" } | ||
schemars = "0.8.1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
thiserror = "1.0.23" | ||
semver = "1" | ||
|
||
[dev-dependencies] | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "0.15.1", features = ["library", "test-utils"] } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "0.16.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" | ||
version = "0.15.1" | ||
version = "0.16.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementation of an proxy contract using a whitelist" | ||
|
@@ -20,17 +20,17 @@ test-utils = [] | |
|
||
[dependencies] | ||
cosmwasm-schema = { version = "1.1.0" } | ||
cw-utils = { path = "../../packages/utils", version = "0.15.1" } | ||
cw1 = { path = "../../packages/cw1", version = "0.15.1" } | ||
cw2 = { path = "../../packages/cw2", version = "0.15.1" } | ||
cw-utils = { path = "../../packages/utils", version = "0.16.0" } | ||
cw1 = { path = "../../packages/cw1", version = "0.16.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.16.0" } | ||
cosmwasm-std = { version = "1.1.0", features = ["staking"] } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" } | ||
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" | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.15.1" } | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.16.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 = "cw1155-base" | ||
version = "0.15.1" | ||
version = "0.16.0" | ||
authors = ["Huang Yi <[email protected]>"] | ||
edition = "2018" | ||
description = "Basic implementation of a CosmWasm-1155 compliant token" | ||
|
@@ -19,10 +19,10 @@ library = [] | |
|
||
[dependencies] | ||
cosmwasm-schema = { version = "1.1.0" } | ||
cw-utils = { path = "../../packages/utils", version = "0.15.1" } | ||
cw2 = { path = "../../packages/cw2", version = "0.15.1" } | ||
cw1155 = { path = "../../packages/cw1155", version = "0.15.1" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" } | ||
cw-utils = { path = "../../packages/utils", version = "0.16.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.16.0" } | ||
cw1155 = { path = "../../packages/cw1155", version = "0.16.0" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" } | ||
cosmwasm-std = { version = "1.1.0" } | ||
schemars = "0.8.1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
|
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 = "cw20-base" | ||
version = "0.15.1" | ||
version = "0.16.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Basic implementation of a CosmWasm-20 compliant token" | ||
|
@@ -19,15 +19,15 @@ library = [] | |
|
||
[dependencies] | ||
cosmwasm-schema = { version = "1.1.0" } | ||
cw-utils = { path = "../../packages/utils", version = "0.15.1" } | ||
cw2 = { path = "../../packages/cw2", version = "0.15.1" } | ||
cw20 = { path = "../../packages/cw20", version = "0.15.1" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" } | ||
cw-utils = { path = "../../packages/utils", version = "0.16.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.16.0" } | ||
cw20 = { path = "../../packages/cw20", version = "0.16.0" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" } | ||
cosmwasm-std = { version = "1.1.0" } | ||
schemars = "0.8.1" | ||
semver = "1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
thiserror = { version = "1.0.23" } | ||
|
||
[dev-dependencies] | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.15.1" } | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.16.0" } |
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 = "cw20-ics20" | ||
version = "0.15.1" | ||
version = "0.16.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "IBC Enabled contracts that receives CW20 tokens and sends them over ICS20 to a remote chain" | ||
|
@@ -19,12 +19,12 @@ library = [] | |
|
||
[dependencies] | ||
cosmwasm-schema = { version = "1.1.0" } | ||
cw-utils = { path = "../../packages/utils", version = "0.15.1" } | ||
cw2 = { path = "../../packages/cw2", version = "0.15.1" } | ||
cw20 = { path = "../../packages/cw20", version = "0.15.1" } | ||
cw-utils = { path = "../../packages/utils", version = "0.16.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.16.0" } | ||
cw20 = { path = "../../packages/cw20", version = "0.16.0" } | ||
cosmwasm-std = { version = "1.1.0", features = ["stargate"] } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" } | ||
cw-controllers = { path = "../../packages/controllers", version = "0.15.1" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" } | ||
cw-controllers = { path = "../../packages/controllers", version = "0.16.0" } | ||
schemars = "0.8.1" | ||
semver = "1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
|
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 = "cw3-fixed-multisig" | ||
version = "0.15.1" | ||
version = "0.16.0" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2018" | ||
description = "Implementing cw3 with an fixed group multisig" | ||
|
@@ -19,16 +19,16 @@ library = [] | |
|
||
[dependencies] | ||
cosmwasm-schema = { version = "1.1.0" } | ||
cw-utils = { path = "../../packages/utils", version = "0.15.1" } | ||
cw2 = { path = "../../packages/cw2", version = "0.15.1" } | ||
cw3 = { path = "../../packages/cw3", version = "0.15.1" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" } | ||
cw-utils = { path = "../../packages/utils", version = "0.16.0" } | ||
cw2 = { path = "../../packages/cw2", version = "0.16.0" } | ||
cw3 = { path = "../../packages/cw3", version = "0.16.0" } | ||
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" } | ||
cosmwasm-std = { version = "1.1.0" } | ||
schemars = "0.8.1" | ||
serde = { version = "1.0.103", default-features = false, features = ["derive"] } | ||
thiserror = { version = "1.0.23" } | ||
|
||
[dev-dependencies] | ||
cw20 = { path = "../../packages/cw20", version = "0.15.1" } | ||
cw20-base = { path = "../cw20-base", version = "0.15.1", features = ["library"] } | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.15.1" } | ||
cw20 = { path = "../../packages/cw20", version = "0.16.0" } | ||
cw20-base = { path = "../cw20-base", version = "0.16.0", features = ["library"] } | ||
cw-multi-test = { path = "../../packages/multi-test", version = "0.16.0" } |
Oops, something went wrong.