Skip to content

Commit

Permalink
Merge pull request #612 from CosmWasm/release-0.11.1
Browse files Browse the repository at this point in the history
Prepare 0.11.1 Release
  • Loading branch information
ethanfrey committed Dec 28, 2021
2 parents b68dd19 + 41f23cc commit cb3c892
Show file tree
Hide file tree
Showing 27 changed files with 163 additions and 140 deletions.
27 changes: 25 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,33 @@
# Changelog

# Changelog

## [Unreleased](https://github.com/CosmWasm/cw-plus/tree/HEAD)

[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v0.11.0...HEAD)
[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v0.11.1...HEAD)

## [v0.11.1](https://github.com/CosmWasm/cw-plus/tree/v0.11.1) (2021-12-28)

[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v0.11.0...v0.11.1)

**Closed issues:**

- multitest returns error on BankMsg with 0 tokens [\#610](https://github.com/CosmWasm/cw-plus/issues/610)
- Add signed int keys migration example [\#602](https://github.com/CosmWasm/cw-plus/issues/602)
- Issue running wasm compilation out-of-the-box [\#545](https://github.com/CosmWasm/cw-plus/issues/545)

**Merged pull requests:**

- Assert non-empty send/burn/mint in multitest bank module [\#611](https://github.com/CosmWasm/cw-plus/pull/611) ([ethanfrey](https://github.com/ethanfrey))
- cw-storage-plus: Expose keys::Key [\#609](https://github.com/CosmWasm/cw-plus/pull/609) ([orkunkl](https://github.com/orkunkl))
- Implement Expired variant, Scheduled [\#606](https://github.com/CosmWasm/cw-plus/pull/606) ([orkunkl](https://github.com/orkunkl))
- Signed int keys migrate example [\#604](https://github.com/CosmWasm/cw-plus/pull/604) ([maurolacy](https://github.com/maurolacy))
- Adjust order of publishing to handle new deps [\#603](https://github.com/CosmWasm/cw-plus/pull/603) ([ethanfrey](https://github.com/ethanfrey))
- Fix cw-utils README entry [\#601](https://github.com/CosmWasm/cw-plus/pull/601) ([maurolacy](https://github.com/maurolacy))
- Rename utils to cw-utils [\#598](https://github.com/CosmWasm/cw-plus/pull/598) ([ethanfrey](https://github.com/ethanfrey))
- Mention latest workspace optimizer version in README [\#595](https://github.com/CosmWasm/cw-plus/pull/595) ([ueco-jb](https://github.com/ueco-jb))

## [v0.11.0](https://github.com/CosmWasm/cw-plus/tree/v0.11.0) (2021-11-22)
## [v0.11.0](https://github.com/CosmWasm/cw-plus/tree/v0.11.0) (2021-12-22)

[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v0.10.3...v0.11.0)

Expand Down
48 changes: 24 additions & 24 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.11.0"
version = "0.11.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract"
Expand All @@ -19,17 +19,17 @@ library = []
test-utils = []

[dependencies]
cw-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"] }
cw-utils = { path = "../../packages/utils", version = "0.11.1" }
cw1 = { path = "../../packages/cw1", version = "0.11.1" }
cw2 = { path = "../../packages/cw2", version = "0.11.1" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.11.1", features = ["library"] }
cosmwasm-std = { version = "1.0.0-beta3", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11.1" }
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.11.0", features = ["library", "test-utils"] }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.11.1", 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.11.0"
version = "0.11.1"
authors = ["Bartłomiej Kuras <bartk@confio.gmbh>"]
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]
cw-utils = { path = "../../packages/utils", version = "0.11.0" }
cw1 = { path = "../../packages/cw1", version = "0.11.0" }
cw2 = { path = "../../packages/cw2", version = "0.11.0" }
cw-utils = { path = "../../packages/utils", version = "0.11.1" }
cw1 = { path = "../../packages/cw1", version = "0.11.1" }
cw2 = { path = "../../packages/cw2", version = "0.11.1" }
cosmwasm-std = { version = "1.0.0-beta3", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11.1" }
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.11.0", optional = true }
cw-multi-test = { path = "../../packages/multi-test", version = "0.11.1", 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.11.0" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.11.1" }
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.11.0"
version = "0.11.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Implementation of an proxy contract using a whitelist"
Expand All @@ -19,11 +19,11 @@ library = []
test-utils = []

[dependencies]
cw-utils = { path = "../../packages/utils", version = "0.11.0" }
cw1 = { path = "../../packages/cw1", version = "0.11.0" }
cw2 = { path = "../../packages/cw2", version = "0.11.0" }
cw-utils = { path = "../../packages/utils", version = "0.11.1" }
cw1 = { path = "../../packages/cw1", version = "0.11.1" }
cw2 = { path = "../../packages/cw2", version = "0.11.1" }
cosmwasm-std = { version = "1.0.0-beta3", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11.1" }
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.11.0" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.11.1" }
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.11.0"
version = "0.11.1"
authors = ["Huang Yi <huang@crypto.com>"]
edition = "2018"
description = "Basic implementation of a CosmWasm-1155 compliant token"
Expand All @@ -18,10 +18,10 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw-utils = { path = "../../packages/utils", version = "0.11.0" }
cw2 = { path = "../../packages/cw2", version = "0.11.0" }
cw1155 = { path = "../../packages/cw1155", version = "0.11.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11.0" }
cw-utils = { path = "../../packages/utils", version = "0.11.1" }
cw2 = { path = "../../packages/cw2", version = "0.11.1" }
cw1155 = { path = "../../packages/cw1155", version = "0.11.1" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.11.1" }
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.11.0"
version = "0.11.1"
authors = ["Mauro Lacy <maurolacy@users.noreply.github.com>"]
edition = "2018"
description = "Implementation of Atomic Swaps"
Expand All @@ -15,11 +15,11 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

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

0 comments on commit cb3c892

Please sign in to comment.