-
Notifications
You must be signed in to change notification settings - Fork 355
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 #883 from CosmWasm/release_v1.1.1
chore: Release v1.1.1
- Loading branch information
Showing
16 changed files
with
85 additions
and
69 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 = "1.1.0" | ||
version = "1.1.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract" | ||
|
@@ -21,9 +21,9 @@ test-utils = [] | |
[dependencies] | ||
cosmwasm-schema = { version = "1.4.0" } | ||
cw-utils = "1.0.1" | ||
cw1 = { path = "../../packages/cw1", version = "1.1.0" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.0" } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.0", features = [ | ||
cw1 = { path = "../../packages/cw1", version = "1.1.1" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.1" } | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.1", features = [ | ||
"library", | ||
] } | ||
cosmwasm-std = { version = "1.4.0", features = ["staking"] } | ||
|
@@ -34,7 +34,7 @@ thiserror = "1.0.49" | |
semver = "1" | ||
|
||
[dev-dependencies] | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.0", features = [ | ||
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.1", 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 = "1.1.0" | ||
version = "1.1.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "Implementation of an proxy contract using a whitelist" | ||
|
@@ -21,8 +21,8 @@ test-utils = [] | |
[dependencies] | ||
cosmwasm-schema = { version = "1.4.0" } | ||
cw-utils = "1.0.1" | ||
cw1 = { path = "../../packages/cw1", version = "1.1.0" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.0" } | ||
cw1 = { path = "../../packages/cw1", version = "1.1.1" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.1" } | ||
cosmwasm-std = { version = "1.4.0", features = ["staking"] } | ||
cw-storage-plus = "1.1.0" | ||
schemars = "0.8.15" | ||
|
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 = "1.1.0" | ||
version = "1.1.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "Basic implementation of a CosmWasm-20 compliant token" | ||
|
@@ -20,8 +20,8 @@ library = [] | |
[dependencies] | ||
cosmwasm-schema = { version = "1.4.0" } | ||
cw-utils = "1.0.1" | ||
cw2 = { path = "../../packages/cw2", version = "1.1.0" } | ||
cw20 = { path = "../../packages/cw20", version = "1.1.0" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.1" } | ||
cw20 = { path = "../../packages/cw20", version = "1.1.1" } | ||
cw-storage-plus = "1.1.0" | ||
cosmwasm-std = { version = "1.4.0" } | ||
schemars = "0.8.15" | ||
|
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 = "1.1.0" | ||
version = "1.1.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "IBC Enabled contracts that receives CW20 tokens and sends them over ICS20 to a remote chain" | ||
|
@@ -20,11 +20,11 @@ library = [] | |
[dependencies] | ||
cosmwasm-schema = { version = "1.4.0" } | ||
cw-utils = "1.0.1" | ||
cw2 = { path = "../../packages/cw2", version = "1.1.0" } | ||
cw20 = { path = "../../packages/cw20", version = "1.1.0" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.1" } | ||
cw20 = { path = "../../packages/cw20", version = "1.1.1" } | ||
cosmwasm-std = { version = "1.4.0", features = ["stargate"] } | ||
cw-storage-plus = "1.1.0" | ||
cw-controllers = { path = "../../packages/controllers", version = "1.1.0" } | ||
cw-controllers = { path = "../../packages/controllers", version = "1.1.1" } | ||
schemars = "0.8.15" | ||
semver = "1" | ||
serde = { version = "1.0.188", 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 = "1.1.0" | ||
version = "1.1.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "Implementing cw3 with an fixed group multisig" | ||
|
@@ -20,15 +20,15 @@ library = [] | |
[dependencies] | ||
cosmwasm-schema = { version = "1.4.0" } | ||
cw-utils = "1.0.1" | ||
cw2 = { path = "../../packages/cw2", version = "1.1.0" } | ||
cw3 = { path = "../../packages/cw3", version = "1.1.0" } | ||
cw2 = { path = "../../packages/cw2", version = "1.1.1" } | ||
cw3 = { path = "../../packages/cw3", version = "1.1.1" } | ||
cw-storage-plus = "1.1.0" | ||
cosmwasm-std = { version = "1.4.0" } | ||
schemars = "0.8.15" | ||
serde = { version = "1.0.188", default-features = false, features = ["derive"] } | ||
thiserror = { version = "1.0.49" } | ||
|
||
[dev-dependencies] | ||
cw20 = { path = "../../packages/cw20", version = "1.1.0" } | ||
cw20-base = { path = "../cw20-base", version = "1.1.0", features = ["library"] } | ||
cw20 = { path = "../../packages/cw20", version = "1.1.1" } | ||
cw20-base = { path = "../cw20-base", version = "1.1.1", features = ["library"] } | ||
cw-multi-test = "0.16.1" |
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-flex-multisig" | ||
version = "1.1.0" | ||
version = "1.1.1" | ||
authors = ["Ethan Frey <[email protected]>"] | ||
edition = "2021" | ||
description = "Implementing cw3 with multiple voting patterns and dynamic groups" | ||
|
@@ -20,20 +20,20 @@ library = [] | |
[dependencies] | ||
cosmwasm-schema = { version = "1.4.0" } | ||
cw-utils = "1.0.1" | ||
cw2 = { path = "../../packages/cw2", version = "1.1.0" } | ||
cw3 = { path = "../../packages/cw3", version = "1.1.0" } | ||
cw3-fixed-multisig = { path = "../cw3-fixed-multisig", version = "1.1.0", features = [ | ||
cw2 = { path = "../../packages/cw2", version = "1.1.1" } | ||
cw3 = { path = "../../packages/cw3", version = "1.1.1" } | ||
cw3-fixed-multisig = { path = "../cw3-fixed-multisig", version = "1.1.1", features = [ | ||
"library", | ||
] } | ||
cw4 = { path = "../../packages/cw4", version = "1.1.0" } | ||
cw20 = { path = "../../packages/cw20", version = "1.1.0" } | ||
cw4 = { path = "../../packages/cw4", version = "1.1.1" } | ||
cw20 = { path = "../../packages/cw20", version = "1.1.1" } | ||
cw-storage-plus = "1.1.0" | ||
cosmwasm-std = { version = "1.4.0" } | ||
schemars = "0.8.15" | ||
serde = { version = "1.0.188", default-features = false, features = ["derive"] } | ||
thiserror = { version = "1.0.49" } | ||
|
||
[dev-dependencies] | ||
cw4-group = { path = "../cw4-group", version = "1.1.0" } | ||
cw4-group = { path = "../cw4-group", version = "1.1.1" } | ||
cw-multi-test = "0.16.5" | ||
cw20-base = { path = "../cw20-base", version = "1.1.0" } | ||
cw20-base = { path = "../cw20-base", version = "1.1.1" } |
Oops, something went wrong.