Skip to content

Commit a76bbea

Browse files
authored
Merge pull request #674 from CosmWasm/0.13.0-release
0.13.0 release
2 parents 1fa92d7 + 320ea83 commit a76bbea

File tree

22 files changed

+139
-132
lines changed

22 files changed

+139
-132
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,26 @@
11
# Changelog
22

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

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

7+
**Breaking changes:**
8+
9+
- Fix `MultiIndex` last type param default / docs [\#669](https://github.com/CosmWasm/cw-plus/issues/669)
10+
11+
**Closed issues:**
12+
13+
- Querying over composite key [\#664](https://github.com/CosmWasm/cw-plus/issues/664)
14+
- 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)
15+
- Make `Bound` helpers return `Option<Self>` [\#644](https://github.com/CosmWasm/cw-plus/issues/644)
16+
17+
**Merged pull requests:**
18+
19+
- Update cosmwasm to 1.0.0-beta6 [\#672](https://github.com/CosmWasm/cw-plus/pull/672) ([webmaster128](https://github.com/webmaster128))
20+
- Update storage plus docs / Remove `MultiIndex` PK default [\#671](https://github.com/CosmWasm/cw-plus/pull/671) ([maurolacy](https://github.com/maurolacy))
21+
- 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))
22+
- Properly handle generic queries in multi-test [\#660](https://github.com/CosmWasm/cw-plus/pull/660) ([ethanfrey](https://github.com/ethanfrey))
23+
724
## [v0.12.1](https://github.com/CosmWasm/cw-plus/tree/v0.12.1) (2022-02-14)
825

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

Cargo.lock

Lines changed: 35 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/cw1-subkeys/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw1-subkeys"
3-
version = "0.12.1"
3+
version = "0.13.0"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
edition = "2018"
66
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract"
@@ -19,17 +19,17 @@ library = []
1919
test-utils = []
2020

2121
[dependencies]
22-
cw-utils = { path = "../../packages/utils", version = "0.12.1" }
23-
cw1 = { path = "../../packages/cw1", version = "0.12.1" }
24-
cw2 = { path = "../../packages/cw2", version = "0.12.1" }
25-
cw1-whitelist = { path = "../cw1-whitelist", version = "0.12.1", features = ["library"] }
22+
cw-utils = { path = "../../packages/utils", version = "0.13.0" }
23+
cw1 = { path = "../../packages/cw1", version = "0.13.0" }
24+
cw2 = { path = "../../packages/cw2", version = "0.13.0" }
25+
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.0", features = ["library"] }
2626
cosmwasm-std = { version = "1.0.0-beta6", features = ["staking"] }
27-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.12.1" }
27+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.0" }
2828
schemars = "0.8.1"
2929
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
3030
thiserror = "1.0.23"
3131
semver = "1"
3232

3333
[dev-dependencies]
3434
cosmwasm-schema = { version = "1.0.0-beta6" }
35-
cw1-whitelist = { path = "../cw1-whitelist", version = "0.12.1", features = ["library", "test-utils"] }
35+
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.0", features = ["library", "test-utils"] }

contracts/cw1-whitelist-ng/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw1-whitelist-ng"
3-
version = "0.12.1"
3+
version = "0.13.0"
44
authors = ["Bartłomiej Kuras <bartk@confio.gmbh>"]
55
edition = "2018"
66
description = "Implementation of an proxy contract using a whitelist"
@@ -22,20 +22,20 @@ querier = ["library"]
2222
multitest = ["cw-multi-test", "anyhow"]
2323

2424
[dependencies]
25-
cw-utils = { path = "../../packages/utils", version = "0.12.1" }
26-
cw1 = { path = "../../packages/cw1", version = "0.12.1" }
27-
cw2 = { path = "../../packages/cw2", version = "0.12.1" }
25+
cw-utils = { path = "../../packages/utils", version = "0.13.0" }
26+
cw1 = { path = "../../packages/cw1", version = "0.13.0" }
27+
cw2 = { path = "../../packages/cw2", version = "0.13.0" }
2828
cosmwasm-std = { version = "1.0.0-beta6", features = ["staking"] }
29-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.12.1" }
29+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.0" }
3030
schemars = "0.8.1"
3131
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
3232
thiserror = { version = "1.0.23" }
33-
cw-multi-test = { path = "../../packages/multi-test", version = "0.12.1", optional = true }
33+
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.0", optional = true }
3434
anyhow = { version = "1", optional = true }
3535

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

0 commit comments

Comments
 (0)