Skip to content

Commit ce603a4

Browse files
authored
Merge pull request #686 from CosmWasm/prepare-0.13.1
Prepare 0.13.1 release
2 parents 2ddabc4 + d00b733 commit ce603a4

File tree

23 files changed

+130
-108
lines changed

23 files changed

+130
-108
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ jobs:
597597
- run:
598598
name: Install check_contract
599599
# Uses --debug for compilation speed
600-
command: cargo install --debug --version 1.0.0-beta4 --features iterator --example check_contract -- cosmwasm-vm
600+
command: cargo install --debug --version 1.0.0-beta6 --features iterator --example check_contract -- cosmwasm-vm
601601
- save_cache:
602602
paths:
603603
- /usr/local/cargo/registry

CHANGELOG.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,28 @@
22

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

5-
[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v0.13.0...HEAD)
5+
[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v0.13.1...HEAD)
6+
7+
## [v0.13.1](https://github.com/CosmWasm/cw-plus/tree/v0.13.1) (2022-03-25)
8+
9+
[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v0.13.0...v0.13.1)
10+
11+
**Closed issues:**
12+
13+
- cw20-base: duplicate accounts get overwritten in Init [\#683](https://github.com/CosmWasm/cw-plus/issues/683)
14+
- Implementation of hooks.rs \(not\) as `HashMap` [\#682](https://github.com/CosmWasm/cw-plus/issues/682)
15+
- ICS20, invalid packet data [\#662](https://github.com/CosmWasm/cw-plus/issues/662)
16+
- Duplicate accounts in cw20 initial balances causes unrecoverable inconsistent state [\#626](https://github.com/CosmWasm/cw-plus/issues/626)
17+
18+
**Merged pull requests:**
19+
20+
- Add default gas limit to cw20-ics20 [\#685](https://github.com/CosmWasm/cw-plus/pull/685) ([ethanfrey](https://github.com/ethanfrey))
21+
- Fix cw20 ics20 packets [\#684](https://github.com/CosmWasm/cw-plus/pull/684) ([ethanfrey](https://github.com/ethanfrey))
22+
- Clarify the stability of cw-storage-plus, no longer Experimental [\#676](https://github.com/CosmWasm/cw-plus/pull/676) ([ethanfrey](https://github.com/ethanfrey))
23+
- Update changelog add upcoming [\#675](https://github.com/CosmWasm/cw-plus/pull/675) ([maurolacy](https://github.com/maurolacy))
24+
- Reject proposals early [\#668](https://github.com/CosmWasm/cw-plus/pull/668) ([Callum-A](https://github.com/Callum-A))
25+
- cw20-base: validate addresses are unique in initial balances [\#659](https://github.com/CosmWasm/cw-plus/pull/659) ([harryscholes](https://github.com/harryscholes))
26+
- New SECURITY.md refering to wasmd [\#624](https://github.com/CosmWasm/cw-plus/pull/624) ([ethanfrey](https://github.com/ethanfrey))
627

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

@@ -14,6 +35,7 @@
1435

1536
**Closed issues:**
1637

38+
- Release `cw-plus` v0.13.0 [\#673](https://github.com/CosmWasm/cw-plus/issues/673)
1739
- Querying over composite key [\#664](https://github.com/CosmWasm/cw-plus/issues/664)
1840
- 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)
1941
- Make `Bound` helpers return `Option<Self>` [\#644](https://github.com/CosmWasm/cw-plus/issues/644)

Cargo.lock

Lines changed: 20 additions & 20 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.13.0"
3+
version = "0.13.1"
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.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"] }
22+
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
23+
cw1 = { path = "../../packages/cw1", version = "0.13.1" }
24+
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
25+
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.1", features = ["library"] }
2626
cosmwasm-std = { version = "1.0.0-beta6", features = ["staking"] }
27-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.0" }
27+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.1" }
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.13.0", features = ["library", "test-utils"] }
35+
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.1", 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.13.0"
3+
version = "0.13.1"
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.13.0" }
26-
cw1 = { path = "../../packages/cw1", version = "0.13.0" }
27-
cw2 = { path = "../../packages/cw2", version = "0.13.0" }
25+
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
26+
cw1 = { path = "../../packages/cw1", version = "0.13.1" }
27+
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
2828
cosmwasm-std = { version = "1.0.0-beta6", features = ["staking"] }
29-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.0" }
29+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.1" }
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.13.0", optional = true }
33+
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.1", 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.13.0" }
40+
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.1" }
4141
derivative = "2"

contracts/cw1-whitelist/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw1-whitelist"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
edition = "2018"
66
description = "Implementation of an proxy contract using a whitelist"
@@ -19,11 +19,11 @@ library = []
1919
test-utils = []
2020

2121
[dependencies]
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" }
22+
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
23+
cw1 = { path = "../../packages/cw1", version = "0.13.1" }
24+
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
2525
cosmwasm-std = { version = "1.0.0-beta6", features = ["staking"] }
26-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.0" }
26+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.1" }
2727
schemars = "0.8.1"
2828
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
2929
thiserror = { version = "1.0.23" }
@@ -32,5 +32,5 @@ thiserror = { version = "1.0.23" }
3232
anyhow = "1"
3333
assert_matches = "1"
3434
cosmwasm-schema = { version = "1.0.0-beta6" }
35-
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.0" }
35+
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.1" }
3636
derivative = "2"

contracts/cw1155-base/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw1155-base"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
authors = ["Huang Yi <huang@crypto.com>"]
55
edition = "2018"
66
description = "Basic implementation of a CosmWasm-1155 compliant token"
@@ -18,10 +18,10 @@ backtraces = ["cosmwasm-std/backtraces"]
1818
library = []
1919

2020
[dependencies]
21-
cw-utils = { path = "../../packages/utils", version = "0.13.0" }
22-
cw2 = { path = "../../packages/cw2", version = "0.13.0" }
23-
cw1155 = { path = "../../packages/cw1155", version = "0.13.0" }
24-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.0" }
21+
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
22+
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
23+
cw1155 = { path = "../../packages/cw1155", version = "0.13.1" }
24+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.1" }
2525
cosmwasm-std = { version = "1.0.0-beta6" }
2626
schemars = "0.8.1"
2727
serde = { version = "1.0.103", default-features = false, features = ["derive"] }

contracts/cw20-base/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw20-base"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
edition = "2018"
66
description = "Basic implementation of a CosmWasm-20 compliant token"
@@ -18,10 +18,10 @@ backtraces = ["cosmwasm-std/backtraces"]
1818
library = []
1919

2020
[dependencies]
21-
cw-utils = { path = "../../packages/utils", version = "0.13.0" }
22-
cw2 = { path = "../../packages/cw2", version = "0.13.0" }
23-
cw20 = { path = "../../packages/cw20", version = "0.13.0" }
24-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.0" }
21+
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
22+
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
23+
cw20 = { path = "../../packages/cw20", version = "0.13.1" }
24+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.1" }
2525
cosmwasm-std = { version = "1.0.0-beta6" }
2626
schemars = "0.8.1"
2727
serde = { version = "1.0.103", default-features = false, features = ["derive"] }

contracts/cw20-ics20/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw20-ics20"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
edition = "2018"
66
description = "IBC Enabled contracts that receives CW20 tokens and sends them over ICS20 to a remote chain"
@@ -18,12 +18,12 @@ backtraces = ["cosmwasm-std/backtraces"]
1818
library = []
1919

2020
[dependencies]
21-
cw-utils = { path = "../../packages/utils", version = "0.13.0" }
22-
cw2 = { path = "../../packages/cw2", version = "0.13.0" }
23-
cw20 = { path = "../../packages/cw20", version = "0.13.0" }
21+
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
22+
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
23+
cw20 = { path = "../../packages/cw20", version = "0.13.1" }
2424
cosmwasm-std = { version = "1.0.0-beta6", features = ["stargate"] }
25-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.0" }
26-
cw-controllers = { path = "../../packages/controllers", version = "0.13.0" }
25+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.1" }
26+
cw-controllers = { path = "../../packages/controllers", version = "0.13.1" }
2727
schemars = "0.8.1"
2828
semver = "1"
2929
serde = { version = "1.0.103", default-features = false, features = ["derive"] }

0 commit comments

Comments
 (0)