Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release v0.12.0 #654

Merged
merged 3 commits into from
Feb 9, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 <[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"]
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 <[email protected]>"]
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