Skip to content

Commit

Permalink
Merge pull request #829 from CosmWasm/jakub/set-version-0-15-2
Browse files Browse the repository at this point in the history
Set version 0.16.0
  • Loading branch information
ueco-jb authored Oct 17, 2022
2 parents 96c5927 + 1dd2a53 commit 53dc88f
Show file tree
Hide file tree
Showing 22 changed files with 132 additions and 103 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# Changelog

## [v0.16.0](https://github.com/CosmWasm/cw-plus/tree/v0.16.0) (2022-10-14)

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

**Closed issues:**

- Unable to run workspace-optimizer [\#828](https://github.com/CosmWasm/cw-plus/issues/828)
- Running the build command for the production-ready build for cw-20 and not only ends an error [\#821](https://github.com/CosmWasm/cw-plus/issues/821)
- Fill out missing high-level docs [\#806](https://github.com/CosmWasm/cw-plus/issues/806)
- Some multitest bindings for staking are missing such as `BondedDenom` [\#753](https://github.com/CosmWasm/cw-plus/issues/753)
- Allow burn to have a callback just like Send [\#717](https://github.com/CosmWasm/cw-plus/issues/717)
- Unable to upload cw20\_base wasm file on terra-station [\#716](https://github.com/CosmWasm/cw-plus/issues/716)
- Cannot upload to localterra with cw-storage-plus 0.12.1 [\#666](https://github.com/CosmWasm/cw-plus/issues/666)
- Is `MAX_LIMIT` a bug? [\#625](https://github.com/CosmWasm/cw-plus/issues/625)
- Add support for admin migrations to cw-multitest [\#744](https://github.com/CosmWasm/cw-plus/issues/744)

**Merged pull requests:**

- Remove `cosmwasm-storage` dependency [\#827](https://github.com/CosmWasm/cw-plus/pull/827) ([uint](https://github.com/uint))
- Generic query for cw3 unification [\#826](https://github.com/CosmWasm/cw-plus/pull/826) ([hashedone](https://github.com/hashedone))
- Remove cw1-whitelist-ng [\#825](https://github.com/CosmWasm/cw-plus/pull/825) ([uint](https://github.com/uint))
- Deque changes [\#822](https://github.com/CosmWasm/cw-plus/pull/822) ([chipshort](https://github.com/chipshort))
- Add missing docs [\#818](https://github.com/CosmWasm/cw-plus/pull/818) ([chipshort](https://github.com/chipshort))
- Remove storage-plus dependency from storage-macro [\#817](https://github.com/CosmWasm/cw-plus/pull/817) ([chipshort](https://github.com/chipshort))
- \[multi-test\] Add update and clear admin support to WasmKeeper [\#812](https://github.com/CosmWasm/cw-plus/pull/812) ([chipshort](https://github.com/chipshort))
- Update CHANGELOG [\#811](https://github.com/CosmWasm/cw-plus/pull/811) ([uint](https://github.com/uint))
- \[multi-test\] Add staking and distribution module [\#782](https://github.com/CosmWasm/cw-plus/pull/782) ([ueco-jb](https://github.com/ueco-jb))
- Handle duplicate members in cw4-group create [\#702](https://github.com/CosmWasm/cw-plus/pull/702) ([codehans](https://github.com/codehans))

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

[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v0.15.0...v0.15.1)
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.15.1"
version = "0.16.0"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract"
Expand All @@ -20,16 +20,16 @@ test-utils = []

[dependencies]
cosmwasm-schema = { version = "1.1.0" }
cw-utils = { path = "../../packages/utils", version = "0.15.1" }
cw1 = { path = "../../packages/cw1", version = "0.15.1" }
cw2 = { path = "../../packages/cw2", version = "0.15.1" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.15.1", features = ["library"] }
cw-utils = { path = "../../packages/utils", version = "0.16.0" }
cw1 = { path = "../../packages/cw1", version = "0.16.0" }
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.16.0", features = ["library"] }
cosmwasm-std = { version = "1.1.0", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = "1.0.23"
semver = "1"

[dev-dependencies]
cw1-whitelist = { path = "../cw1-whitelist", version = "0.15.1", features = ["library", "test-utils"] }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.16.0", features = ["library", "test-utils"] }
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.15.1"
version = "0.16.0"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Implementation of an proxy contract using a whitelist"
Expand All @@ -20,17 +20,17 @@ test-utils = []

[dependencies]
cosmwasm-schema = { version = "1.1.0" }
cw-utils = { path = "../../packages/utils", version = "0.15.1" }
cw1 = { path = "../../packages/cw1", version = "0.15.1" }
cw2 = { path = "../../packages/cw2", version = "0.15.1" }
cw-utils = { path = "../../packages/utils", version = "0.16.0" }
cw1 = { path = "../../packages/cw1", version = "0.16.0" }
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
cosmwasm-std = { version = "1.1.0", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.23" }

[dev-dependencies]
anyhow = "1"
assert_matches = "1"
cw-multi-test = { path = "../../packages/multi-test", version = "0.15.1" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.16.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.15.1"
version = "0.16.0"
authors = ["Huang Yi <[email protected]>"]
edition = "2018"
description = "Basic implementation of a CosmWasm-1155 compliant token"
Expand All @@ -19,10 +19,10 @@ library = []

[dependencies]
cosmwasm-schema = { version = "1.1.0" }
cw-utils = { path = "../../packages/utils", version = "0.15.1" }
cw2 = { path = "../../packages/cw2", version = "0.15.1" }
cw1155 = { path = "../../packages/cw1155", version = "0.15.1" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" }
cw-utils = { path = "../../packages/utils", version = "0.16.0" }
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
cw1155 = { path = "../../packages/cw1155", version = "0.16.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" }
cosmwasm-std = { version = "1.1.0" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
12 changes: 6 additions & 6 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.15.1"
version = "0.16.0"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Basic implementation of a CosmWasm-20 compliant token"
Expand All @@ -19,15 +19,15 @@ library = []

[dependencies]
cosmwasm-schema = { version = "1.1.0" }
cw-utils = { path = "../../packages/utils", version = "0.15.1" }
cw2 = { path = "../../packages/cw2", version = "0.15.1" }
cw20 = { path = "../../packages/cw20", version = "0.15.1" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" }
cw-utils = { path = "../../packages/utils", version = "0.16.0" }
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
cw20 = { path = "../../packages/cw20", version = "0.16.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" }
cosmwasm-std = { version = "1.1.0" }
schemars = "0.8.1"
semver = "1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.23" }

[dev-dependencies]
cw-multi-test = { path = "../../packages/multi-test", version = "0.15.1" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.16.0" }
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.15.1"
version = "0.16.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 @@ -19,12 +19,12 @@ library = []

[dependencies]
cosmwasm-schema = { version = "1.1.0" }
cw-utils = { path = "../../packages/utils", version = "0.15.1" }
cw2 = { path = "../../packages/cw2", version = "0.15.1" }
cw20 = { path = "../../packages/cw20", version = "0.15.1" }
cw-utils = { path = "../../packages/utils", version = "0.16.0" }
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
cw20 = { path = "../../packages/cw20", version = "0.16.0" }
cosmwasm-std = { version = "1.1.0", features = ["stargate"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" }
cw-controllers = { path = "../../packages/controllers", version = "0.15.1" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" }
cw-controllers = { path = "../../packages/controllers", version = "0.16.0" }
schemars = "0.8.1"
semver = "1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
16 changes: 8 additions & 8 deletions contracts/cw3-fixed-multisig/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw3-fixed-multisig"
version = "0.15.1"
version = "0.16.0"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Implementing cw3 with an fixed group multisig"
Expand All @@ -19,16 +19,16 @@ library = []

[dependencies]
cosmwasm-schema = { version = "1.1.0" }
cw-utils = { path = "../../packages/utils", version = "0.15.1" }
cw2 = { path = "../../packages/cw2", version = "0.15.1" }
cw3 = { path = "../../packages/cw3", version = "0.15.1" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" }
cw-utils = { path = "../../packages/utils", version = "0.16.0" }
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
cw3 = { path = "../../packages/cw3", version = "0.16.0" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" }
cosmwasm-std = { version = "1.1.0" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.23" }

[dev-dependencies]
cw20 = { path = "../../packages/cw20", version = "0.15.1" }
cw20-base = { path = "../cw20-base", version = "0.15.1", features = ["library"] }
cw-multi-test = { path = "../../packages/multi-test", version = "0.15.1" }
cw20 = { path = "../../packages/cw20", version = "0.16.0" }
cw20-base = { path = "../cw20-base", version = "0.16.0", features = ["library"] }
cw-multi-test = { path = "../../packages/multi-test", version = "0.16.0" }
Loading

0 comments on commit 53dc88f

Please sign in to comment.