Skip to content

Commit 53dc88f

Browse files
authored
Merge pull request #829 from CosmWasm/jakub/set-version-0-15-2
Set version 0.16.0
2 parents 96c5927 + 1dd2a53 commit 53dc88f

File tree

22 files changed

+132
-103
lines changed

22 files changed

+132
-103
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Changelog
22

3+
## [v0.16.0](https://github.com/CosmWasm/cw-plus/tree/v0.16.0) (2022-10-14)
4+
5+
[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v0.15.1...v0.16.0)
6+
7+
**Closed issues:**
8+
9+
- Unable to run workspace-optimizer [\#828](https://github.com/CosmWasm/cw-plus/issues/828)
10+
- 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)
11+
- Fill out missing high-level docs [\#806](https://github.com/CosmWasm/cw-plus/issues/806)
12+
- Some multitest bindings for staking are missing such as `BondedDenom` [\#753](https://github.com/CosmWasm/cw-plus/issues/753)
13+
- Allow burn to have a callback just like Send [\#717](https://github.com/CosmWasm/cw-plus/issues/717)
14+
- Unable to upload cw20\_base wasm file on terra-station [\#716](https://github.com/CosmWasm/cw-plus/issues/716)
15+
- Cannot upload to localterra with cw-storage-plus 0.12.1 [\#666](https://github.com/CosmWasm/cw-plus/issues/666)
16+
- Is `MAX_LIMIT` a bug? [\#625](https://github.com/CosmWasm/cw-plus/issues/625)
17+
- Add support for admin migrations to cw-multitest [\#744](https://github.com/CosmWasm/cw-plus/issues/744)
18+
19+
**Merged pull requests:**
20+
21+
- Remove `cosmwasm-storage` dependency [\#827](https://github.com/CosmWasm/cw-plus/pull/827) ([uint](https://github.com/uint))
22+
- Generic query for cw3 unification [\#826](https://github.com/CosmWasm/cw-plus/pull/826) ([hashedone](https://github.com/hashedone))
23+
- Remove cw1-whitelist-ng [\#825](https://github.com/CosmWasm/cw-plus/pull/825) ([uint](https://github.com/uint))
24+
- Deque changes [\#822](https://github.com/CosmWasm/cw-plus/pull/822) ([chipshort](https://github.com/chipshort))
25+
- Add missing docs [\#818](https://github.com/CosmWasm/cw-plus/pull/818) ([chipshort](https://github.com/chipshort))
26+
- Remove storage-plus dependency from storage-macro [\#817](https://github.com/CosmWasm/cw-plus/pull/817) ([chipshort](https://github.com/chipshort))
27+
- \[multi-test\] Add update and clear admin support to WasmKeeper [\#812](https://github.com/CosmWasm/cw-plus/pull/812) ([chipshort](https://github.com/chipshort))
28+
- Update CHANGELOG [\#811](https://github.com/CosmWasm/cw-plus/pull/811) ([uint](https://github.com/uint))
29+
- \[multi-test\] Add staking and distribution module [\#782](https://github.com/CosmWasm/cw-plus/pull/782) ([ueco-jb](https://github.com/ueco-jb))
30+
- Handle duplicate members in cw4-group create [\#702](https://github.com/CosmWasm/cw-plus/pull/702) ([codehans](https://github.com/codehans))
31+
332
## [v0.15.1](https://github.com/CosmWasm/cw-plus/tree/v0.15.1) (2022-09-27)
433

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

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.15.1"
3+
version = "0.16.0"
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"
@@ -20,16 +20,16 @@ test-utils = []
2020

2121
[dependencies]
2222
cosmwasm-schema = { version = "1.1.0" }
23-
cw-utils = { path = "../../packages/utils", version = "0.15.1" }
24-
cw1 = { path = "../../packages/cw1", version = "0.15.1" }
25-
cw2 = { path = "../../packages/cw2", version = "0.15.1" }
26-
cw1-whitelist = { path = "../cw1-whitelist", version = "0.15.1", features = ["library"] }
23+
cw-utils = { path = "../../packages/utils", version = "0.16.0" }
24+
cw1 = { path = "../../packages/cw1", version = "0.16.0" }
25+
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
26+
cw1-whitelist = { path = "../cw1-whitelist", version = "0.16.0", features = ["library"] }
2727
cosmwasm-std = { version = "1.1.0", features = ["staking"] }
28-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" }
28+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" }
2929
schemars = "0.8.1"
3030
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
3131
thiserror = "1.0.23"
3232
semver = "1"
3333

3434
[dev-dependencies]
35-
cw1-whitelist = { path = "../cw1-whitelist", version = "0.15.1", features = ["library", "test-utils"] }
35+
cw1-whitelist = { path = "../cw1-whitelist", version = "0.16.0", features = ["library", "test-utils"] }

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.15.1"
3+
version = "0.16.0"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
edition = "2018"
66
description = "Implementation of an proxy contract using a whitelist"
@@ -20,17 +20,17 @@ test-utils = []
2020

2121
[dependencies]
2222
cosmwasm-schema = { version = "1.1.0" }
23-
cw-utils = { path = "../../packages/utils", version = "0.15.1" }
24-
cw1 = { path = "../../packages/cw1", version = "0.15.1" }
25-
cw2 = { path = "../../packages/cw2", version = "0.15.1" }
23+
cw-utils = { path = "../../packages/utils", version = "0.16.0" }
24+
cw1 = { path = "../../packages/cw1", version = "0.16.0" }
25+
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
2626
cosmwasm-std = { version = "1.1.0", features = ["staking"] }
27-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" }
27+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" }
2828
schemars = "0.8.1"
2929
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
3030
thiserror = { version = "1.0.23" }
3131

3232
[dev-dependencies]
3333
anyhow = "1"
3434
assert_matches = "1"
35-
cw-multi-test = { path = "../../packages/multi-test", version = "0.15.1" }
35+
cw-multi-test = { path = "../../packages/multi-test", version = "0.16.0" }
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.15.1"
3+
version = "0.16.0"
44
authors = ["Huang Yi <huang@crypto.com>"]
55
edition = "2018"
66
description = "Basic implementation of a CosmWasm-1155 compliant token"
@@ -19,10 +19,10 @@ library = []
1919

2020
[dependencies]
2121
cosmwasm-schema = { version = "1.1.0" }
22-
cw-utils = { path = "../../packages/utils", version = "0.15.1" }
23-
cw2 = { path = "../../packages/cw2", version = "0.15.1" }
24-
cw1155 = { path = "../../packages/cw1155", version = "0.15.1" }
25-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" }
22+
cw-utils = { path = "../../packages/utils", version = "0.16.0" }
23+
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
24+
cw1155 = { path = "../../packages/cw1155", version = "0.16.0" }
25+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" }
2626
cosmwasm-std = { version = "1.1.0" }
2727
schemars = "0.8.1"
2828
serde = { version = "1.0.103", default-features = false, features = ["derive"] }

contracts/cw20-base/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-base"
3-
version = "0.15.1"
3+
version = "0.16.0"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
edition = "2018"
66
description = "Basic implementation of a CosmWasm-20 compliant token"
@@ -19,15 +19,15 @@ library = []
1919

2020
[dependencies]
2121
cosmwasm-schema = { version = "1.1.0" }
22-
cw-utils = { path = "../../packages/utils", version = "0.15.1" }
23-
cw2 = { path = "../../packages/cw2", version = "0.15.1" }
24-
cw20 = { path = "../../packages/cw20", version = "0.15.1" }
25-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" }
22+
cw-utils = { path = "../../packages/utils", version = "0.16.0" }
23+
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
24+
cw20 = { path = "../../packages/cw20", version = "0.16.0" }
25+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" }
2626
cosmwasm-std = { version = "1.1.0" }
2727
schemars = "0.8.1"
2828
semver = "1"
2929
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
3030
thiserror = { version = "1.0.23" }
3131

3232
[dev-dependencies]
33-
cw-multi-test = { path = "../../packages/multi-test", version = "0.15.1" }
33+
cw-multi-test = { path = "../../packages/multi-test", version = "0.16.0" }

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.15.1"
3+
version = "0.16.0"
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"
@@ -19,12 +19,12 @@ library = []
1919

2020
[dependencies]
2121
cosmwasm-schema = { version = "1.1.0" }
22-
cw-utils = { path = "../../packages/utils", version = "0.15.1" }
23-
cw2 = { path = "../../packages/cw2", version = "0.15.1" }
24-
cw20 = { path = "../../packages/cw20", version = "0.15.1" }
22+
cw-utils = { path = "../../packages/utils", version = "0.16.0" }
23+
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
24+
cw20 = { path = "../../packages/cw20", version = "0.16.0" }
2525
cosmwasm-std = { version = "1.1.0", features = ["stargate"] }
26-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" }
27-
cw-controllers = { path = "../../packages/controllers", version = "0.15.1" }
26+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" }
27+
cw-controllers = { path = "../../packages/controllers", version = "0.16.0" }
2828
schemars = "0.8.1"
2929
semver = "1"
3030
serde = { version = "1.0.103", default-features = false, features = ["derive"] }

contracts/cw3-fixed-multisig/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw3-fixed-multisig"
3-
version = "0.15.1"
3+
version = "0.16.0"
44
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
55
edition = "2018"
66
description = "Implementing cw3 with an fixed group multisig"
@@ -19,16 +19,16 @@ library = []
1919

2020
[dependencies]
2121
cosmwasm-schema = { version = "1.1.0" }
22-
cw-utils = { path = "../../packages/utils", version = "0.15.1" }
23-
cw2 = { path = "../../packages/cw2", version = "0.15.1" }
24-
cw3 = { path = "../../packages/cw3", version = "0.15.1" }
25-
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.15.1" }
22+
cw-utils = { path = "../../packages/utils", version = "0.16.0" }
23+
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
24+
cw3 = { path = "../../packages/cw3", version = "0.16.0" }
25+
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.16.0" }
2626
cosmwasm-std = { version = "1.1.0" }
2727
schemars = "0.8.1"
2828
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
2929
thiserror = { version = "1.0.23" }
3030

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

0 commit comments

Comments
 (0)