Skip to content

Commit

Permalink
Merge pull request #674 from CosmWasm/0.13.0-release
Browse files Browse the repository at this point in the history
0.13.0 release
  • Loading branch information
hashedone committed Mar 9, 2022
2 parents 1fa92d7 + 320ea83 commit a76bbea
Show file tree
Hide file tree
Showing 22 changed files with 139 additions and 132 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,26 @@
# Changelog

## [Unreleased](https://github.com/CosmWasm/cw-plus/tree/HEAD)
## [v0.13.0](https://github.com/CosmWasm/cw-plus/tree/v0.13.0) (2022-03-09)

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

**Breaking changes:**

- Fix `MultiIndex` last type param default / docs [\#669](https://github.com/CosmWasm/cw-plus/issues/669)

**Closed issues:**

- Querying over composite key [\#664](https://github.com/CosmWasm/cw-plus/issues/664)
- the method `may_load` exists for struct `cw_storage_plus::Map<'static, (std::string::String, Uint256), Uint256>`, but its trait bounds were not satisfied the following trait bounds were not satisfied: `(std::string::String, Uint256): PrimaryKey` [\#663](https://github.com/CosmWasm/cw-plus/issues/663)
- Make `Bound` helpers return `Option<Self>` [\#644](https://github.com/CosmWasm/cw-plus/issues/644)

**Merged pull requests:**

- Update cosmwasm to 1.0.0-beta6 [\#672](https://github.com/CosmWasm/cw-plus/pull/672) ([webmaster128](https://github.com/webmaster128))
- Update storage plus docs / Remove `MultiIndex` PK default [\#671](https://github.com/CosmWasm/cw-plus/pull/671) ([maurolacy](https://github.com/maurolacy))
- fix: Remove old TODO comment in cw3-flex readme [\#661](https://github.com/CosmWasm/cw-plus/pull/661) ([apollo-sturdy](https://github.com/apollo-sturdy))
- Properly handle generic queries in multi-test [\#660](https://github.com/CosmWasm/cw-plus/pull/660) ([ethanfrey](https://github.com/ethanfrey))

## [v0.12.1](https://github.com/CosmWasm/cw-plus/tree/v0.12.1) (2022-02-14)

[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v0.12.0...v0.12.1)
Expand Down
80 changes: 35 additions & 45 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.12.1"
version = "0.13.0"
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.12.1" }
cw1 = { path = "../../packages/cw1", version = "0.12.1" }
cw2 = { path = "../../packages/cw2", version = "0.12.1" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.12.1", features = ["library"] }
cw-utils = { path = "../../packages/utils", version = "0.13.0" }
cw1 = { path = "../../packages/cw1", version = "0.13.0" }
cw2 = { path = "../../packages/cw2", version = "0.13.0" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.0", features = ["library"] }
cosmwasm-std = { version = "1.0.0-beta6", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.12.1" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.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-beta6" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.12.1", features = ["library", "test-utils"] }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.0", 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.12.1"
version = "0.13.0"
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.12.1" }
cw1 = { path = "../../packages/cw1", version = "0.12.1" }
cw2 = { path = "../../packages/cw2", version = "0.12.1" }
cw-utils = { path = "../../packages/utils", version = "0.13.0" }
cw1 = { path = "../../packages/cw1", version = "0.13.0" }
cw2 = { path = "../../packages/cw2", version = "0.13.0" }
cosmwasm-std = { version = "1.0.0-beta6", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.12.1" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.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.12.1", optional = true }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.0", optional = true }
anyhow = { version = "1", optional = true }

[dev-dependencies]
anyhow = "1"
assert_matches = "1"
cosmwasm-schema = { version = "1.0.0-beta6" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.12.1" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.0" }
derivative = "2"

0 comments on commit a76bbea

Please sign in to comment.