Skip to content

Commit

Permalink
Merge pull request #654 from CosmWasm/release-0.12.0
Browse files Browse the repository at this point in the history
Prepare release v0.12.0
  • Loading branch information
uint authored Feb 9, 2022
2 parents 49fceee + c9870f2 commit eb76bd2
Show file tree
Hide file tree
Showing 22 changed files with 128 additions and 107 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,36 @@

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

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

**Breaking changes:**

- Add `proposal_id` field to `VoteInfo` structure [\#647](https://github.com/CosmWasm/cw-plus/issues/647)

**Merged pull requests:**

- Ics20 same ack handling as ibctransfer [\#653](https://github.com/CosmWasm/cw-plus/pull/653) ([ethanfrey](https://github.com/ethanfrey))
- packages: support custom queries [\#652](https://github.com/CosmWasm/cw-plus/pull/652) ([uint](https://github.com/uint))
- CW20 - Fix Docs URL [\#649](https://github.com/CosmWasm/cw-plus/pull/649) ([entrancedjames](https://github.com/entrancedjames))

## [v0.12.0-alpha2](https://github.com/CosmWasm/cw-plus/tree/v0.12.0-alpha2) (2022-02-07)

[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/juno-ics20...v0.12.0-alpha2)

**Closed issues:**

- Incorrect Cw4ExecuteMsg used during remove\_hook [\#637](https://github.com/CosmWasm/cw-plus/issues/637)
- \[cw3-flex/fixed-multisig\] Status changes after voting and proposal expiration [\#630](https://github.com/CosmWasm/cw-plus/issues/630)
- Make `Bound`s type safe [\#462](https://github.com/CosmWasm/cw-plus/issues/462)

**Merged pull requests:**

- CW3: Add proposal\_id field to VoteInfo structure [\#648](https://github.com/CosmWasm/cw-plus/pull/648) ([ueco-jb](https://github.com/ueco-jb))
- Use ContractInfoResponse from cosmwasm\_std [\#646](https://github.com/CosmWasm/cw-plus/pull/646) ([webmaster128](https://github.com/webmaster128))
- Fix status/execution bugs in flex-multisig [\#643](https://github.com/CosmWasm/cw-plus/pull/643) ([uint](https://github.com/uint))
- Set version: 0.12.0-alpha2 [\#642](https://github.com/CosmWasm/cw-plus/pull/642) ([ethanfrey](https://github.com/ethanfrey))
- Allow modifying admin of Ics20 contract [\#641](https://github.com/CosmWasm/cw-plus/pull/641) ([ethanfrey](https://github.com/ethanfrey))
- `MIGRATING.md` update / examples for type safe bounds [\#640](https://github.com/CosmWasm/cw-plus/pull/640) ([maurolacy](https://github.com/maurolacy))
- Fix benchmarks \(after 1.58.1 update\) [\#639](https://github.com/CosmWasm/cw-plus/pull/639) ([maurolacy](https://github.com/maurolacy))
- Fix `remove_hook` helper [\#638](https://github.com/CosmWasm/cw-plus/pull/638) ([maurolacy](https://github.com/maurolacy))
- Type safe bounds [\#627](https://github.com/CosmWasm/cw-plus/pull/627) ([maurolacy](https://github.com/maurolacy))
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.12.0-alpha2"
version = "0.12.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.0-alpha2" }
cw1 = { path = "../../packages/cw1", version = "0.12.0-alpha2" }
cw2 = { path = "../../packages/cw2", version = "0.12.0-alpha2" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.12.0-alpha2", features = ["library"] }
cw-utils = { path = "../../packages/utils", version = "0.12.0" }
cw1 = { path = "../../packages/cw1", version = "0.12.0" }
cw2 = { path = "../../packages/cw2", version = "0.12.0" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.12.0", features = ["library"] }
cosmwasm-std = { version = "1.0.0-beta3", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.12.0-alpha2" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.12.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-beta3" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.12.0-alpha2", features = ["library", "test-utils"] }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.12.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.0-alpha2"
version = "0.12.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.0-alpha2" }
cw1 = { path = "../../packages/cw1", version = "0.12.0-alpha2" }
cw2 = { path = "../../packages/cw2", version = "0.12.0-alpha2" }
cw-utils = { path = "../../packages/utils", version = "0.12.0" }
cw1 = { path = "../../packages/cw1", version = "0.12.0" }
cw2 = { path = "../../packages/cw2", version = "0.12.0" }
cosmwasm-std = { version = "1.0.0-beta3", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.12.0-alpha2" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.12.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.0-alpha2", optional = true }
cw-multi-test = { path = "../../packages/multi-test", version = "0.12.0", 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.12.0-alpha2" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.12.0" }
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.12.0-alpha2"
version = "0.12.0"
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.12.0-alpha2" }
cw1 = { path = "../../packages/cw1", version = "0.12.0-alpha2" }
cw2 = { path = "../../packages/cw2", version = "0.12.0-alpha2" }
cw-utils = { path = "../../packages/utils", version = "0.12.0" }
cw1 = { path = "../../packages/cw1", version = "0.12.0" }
cw2 = { path = "../../packages/cw2", version = "0.12.0" }
cosmwasm-std = { version = "1.0.0-beta3", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.12.0-alpha2" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.12.0" }
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.12.0-alpha2" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.12.0" }
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.12.0-alpha2"
version = "0.12.0"
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.12.0-alpha2" }
cw2 = { path = "../../packages/cw2", version = "0.12.0-alpha2" }
cw1155 = { path = "../../packages/cw1155", version = "0.12.0-alpha2" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.12.0-alpha2" }
cw-utils = { path = "../../packages/utils", version = "0.12.0" }
cw2 = { path = "../../packages/cw2", version = "0.12.0" }
cw1155 = { path = "../../packages/cw1155", version = "0.12.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.12.0" }
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-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-base"
version = "0.12.0-alpha2"
version = "0.12.0"
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.12.0-alpha2" }
cw2 = { path = "../../packages/cw2", version = "0.12.0-alpha2" }
cw20 = { path = "../../packages/cw20", version = "0.12.0-alpha2" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.12.0-alpha2" }
cw-utils = { path = "../../packages/utils", version = "0.12.0" }
cw2 = { path = "../../packages/cw2", version = "0.12.0" }
cw20 = { path = "../../packages/cw20", version = "0.12.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.12.0" }
cosmwasm-std = { version = "1.0.0-beta3" }
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.12.0-alpha2"
version = "0.12.0"
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.12.0-alpha2" }
cw2 = { path = "../../packages/cw2", version = "0.12.0-alpha2" }
cw20 = { path = "../../packages/cw20", version = "0.12.0-alpha2" }
cw-utils = { path = "../../packages/utils", version = "0.12.0" }
cw2 = { path = "../../packages/cw2", version = "0.12.0" }
cw20 = { path = "../../packages/cw20", version = "0.12.0" }
cosmwasm-std = { version = "1.0.0-beta3", features = ["stargate"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.12.0-alpha2" }
cw-controllers = { path = "../../packages/controllers", version = "0.12.0-alpha2" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.12.0" }
cw-controllers = { path = "../../packages/controllers", version = "0.12.0" }
schemars = "0.8.1"
semver = "1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
Loading

0 comments on commit eb76bd2

Please sign in to comment.