Skip to content

Commit

Permalink
Merge pull request CosmWasm#686 from CosmWasm/prepare-0.13.1
Browse files Browse the repository at this point in the history
Prepare 0.13.1 release
  • Loading branch information
maurolacy authored Mar 25, 2022
2 parents 2ddabc4 + d00b733 commit ce603a4
Show file tree
Hide file tree
Showing 23 changed files with 130 additions and 108 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ jobs:
- run:
name: Install check_contract
# Uses --debug for compilation speed
command: cargo install --debug --version 1.0.0-beta4 --features iterator --example check_contract -- cosmwasm-vm
command: cargo install --debug --version 1.0.0-beta6 --features iterator --example check_contract -- cosmwasm-vm
- save_cache:
paths:
- /usr/local/cargo/registry
Expand Down
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,28 @@

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

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

## [v0.13.1](https://github.com/CosmWasm/cw-plus/tree/v0.13.1) (2022-03-25)

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

**Closed issues:**

- cw20-base: duplicate accounts get overwritten in Init [\#683](https://github.com/CosmWasm/cw-plus/issues/683)
- Implementation of hooks.rs \(not\) as `HashMap` [\#682](https://github.com/CosmWasm/cw-plus/issues/682)
- ICS20, invalid packet data [\#662](https://github.com/CosmWasm/cw-plus/issues/662)
- Duplicate accounts in cw20 initial balances causes unrecoverable inconsistent state [\#626](https://github.com/CosmWasm/cw-plus/issues/626)

**Merged pull requests:**

- Add default gas limit to cw20-ics20 [\#685](https://github.com/CosmWasm/cw-plus/pull/685) ([ethanfrey](https://github.com/ethanfrey))
- Fix cw20 ics20 packets [\#684](https://github.com/CosmWasm/cw-plus/pull/684) ([ethanfrey](https://github.com/ethanfrey))
- Clarify the stability of cw-storage-plus, no longer Experimental [\#676](https://github.com/CosmWasm/cw-plus/pull/676) ([ethanfrey](https://github.com/ethanfrey))
- Update changelog add upcoming [\#675](https://github.com/CosmWasm/cw-plus/pull/675) ([maurolacy](https://github.com/maurolacy))
- Reject proposals early [\#668](https://github.com/CosmWasm/cw-plus/pull/668) ([Callum-A](https://github.com/Callum-A))
- cw20-base: validate addresses are unique in initial balances [\#659](https://github.com/CosmWasm/cw-plus/pull/659) ([harryscholes](https://github.com/harryscholes))
- New SECURITY.md refering to wasmd [\#624](https://github.com/CosmWasm/cw-plus/pull/624) ([ethanfrey](https://github.com/ethanfrey))

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

Expand All @@ -14,6 +35,7 @@

**Closed issues:**

- Release `cw-plus` v0.13.0 [\#673](https://github.com/CosmWasm/cw-plus/issues/673)
- 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)
Expand Down
40 changes: 20 additions & 20 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.13.0"
version = "0.13.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.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"] }
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
cw1 = { path = "../../packages/cw1", version = "0.13.1" }
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.1", features = ["library"] }
cosmwasm-std = { version = "1.0.0-beta6", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.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-beta6" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.0", features = ["library", "test-utils"] }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.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.13.0"
version = "0.13.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.13.0" }
cw1 = { path = "../../packages/cw1", version = "0.13.0" }
cw2 = { path = "../../packages/cw2", version = "0.13.0" }
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
cw1 = { path = "../../packages/cw1", version = "0.13.1" }
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
cosmwasm-std = { version = "1.0.0-beta6", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.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.13.0", optional = true }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.1", 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.13.0" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.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.13.0"
version = "0.13.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.13.0" }
cw1 = { path = "../../packages/cw1", version = "0.13.0" }
cw2 = { path = "../../packages/cw2", version = "0.13.0" }
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
cw1 = { path = "../../packages/cw1", version = "0.13.1" }
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
cosmwasm-std = { version = "1.0.0-beta6", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.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-beta6" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.0" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.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.13.0"
version = "0.13.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.13.0" }
cw2 = { path = "../../packages/cw2", version = "0.13.0" }
cw1155 = { path = "../../packages/cw1155", version = "0.13.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.0" }
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
cw1155 = { path = "../../packages/cw1155", version = "0.13.1" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.1" }
cosmwasm-std = { version = "1.0.0-beta6" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
10 changes: 5 additions & 5 deletions contracts/cw20-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-base"
version = "0.13.0"
version = "0.13.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "Basic implementation of a CosmWasm-20 compliant token"
Expand All @@ -18,10 +18,10 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw-utils = { path = "../../packages/utils", version = "0.13.0" }
cw2 = { path = "../../packages/cw2", version = "0.13.0" }
cw20 = { path = "../../packages/cw20", version = "0.13.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.0" }
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
cw20 = { path = "../../packages/cw20", version = "0.13.1" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.1" }
cosmwasm-std = { version = "1.0.0-beta6" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
12 changes: 6 additions & 6 deletions contracts/cw20-ics20/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-ics20"
version = "0.13.0"
version = "0.13.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2018"
description = "IBC Enabled contracts that receives CW20 tokens and sends them over ICS20 to a remote chain"
Expand All @@ -18,12 +18,12 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw-utils = { path = "../../packages/utils", version = "0.13.0" }
cw2 = { path = "../../packages/cw2", version = "0.13.0" }
cw20 = { path = "../../packages/cw20", version = "0.13.0" }
cw-utils = { path = "../../packages/utils", version = "0.13.1" }
cw2 = { path = "../../packages/cw2", version = "0.13.1" }
cw20 = { path = "../../packages/cw20", version = "0.13.1" }
cosmwasm-std = { version = "1.0.0-beta6", features = ["stargate"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.0" }
cw-controllers = { path = "../../packages/controllers", version = "0.13.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.1" }
cw-controllers = { path = "../../packages/controllers", version = "0.13.1" }
schemars = "0.8.1"
semver = "1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
Loading

0 comments on commit ce603a4

Please sign in to comment.