Skip to content

Commit fb88067

Browse files
authored
Merge pull request #875 from CosmWasm/release-1-1-0
Released 1.1.0
2 parents de1fb0b + 731d853 commit fb88067

File tree

16 files changed

+94
-71
lines changed

16 files changed

+94
-71
lines changed

CHANGELOG.md

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

3+
## [v1.1.0](https://github.com/CosmWasm/cw-plus/tree/v1.1.0) (2023-06-19)
4+
5+
[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v1.0.1...v1.1.0)
6+
7+
**Closed issues:**
8+
9+
- thread 'main' panicked at 'called `Result::unwrap\(\) [\#867](https://github.com/CosmWasm/cw-plus/issues/867)
10+
- CW20 All accounts query sorting issue [\#864](https://github.com/CosmWasm/cw-plus/issues/864)
11+
- discussion: cw20-base methods should be nonpayable, or forward funds [\#862](https://github.com/CosmWasm/cw-plus/issues/862)
12+
- CW2: add a `cw2::VersionError` error type [\#857](https://github.com/CosmWasm/cw-plus/issues/857)
13+
14+
**Merged pull requests:**
15+
16+
- Update optimizer to latest [\#870](https://github.com/CosmWasm/cw-plus/pull/870) ([TrevorJTClarke](https://github.com/TrevorJTClarke))
17+
- Added optional memo to ics20 packets [\#868](https://github.com/CosmWasm/cw-plus/pull/868) ([nicolaslara](https://github.com/nicolaslara))
18+
- Remove unnecessary zero checks [\#863](https://github.com/CosmWasm/cw-plus/pull/863) ([webmaster128](https://github.com/webmaster128))
19+
- Update rustc to 1.64 on CI wasm-build [\#861](https://github.com/CosmWasm/cw-plus/pull/861) ([ueco-jb](https://github.com/ueco-jb))
20+
- Address minor typos in cw1 comments and README [\#860](https://github.com/CosmWasm/cw-plus/pull/860) ([mikedotexe](https://github.com/mikedotexe))
21+
- Update workspace-optimizer version in README to 0.12.11 [\#859](https://github.com/CosmWasm/cw-plus/pull/859) ([mikedotexe](https://github.com/mikedotexe))
22+
- CW2: add a method to assert contract version [\#858](https://github.com/CosmWasm/cw-plus/pull/858) ([larry0x](https://github.com/larry0x))
23+
- Remove non-existent profile [\#856](https://github.com/CosmWasm/cw-plus/pull/856) ([mandrean](https://github.com/mandrean))
24+
325
## [v1.0.1](https://github.com/CosmWasm/cw-plus/tree/v1.0.1) (2022-12-16)
426

527
[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v1.0.0...v1.0.1)

Cargo.lock

Lines changed: 26 additions & 25 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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw1-subkeys"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2021"
66
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract"
@@ -21,9 +21,9 @@ test-utils = []
2121
[dependencies]
2222
cosmwasm-schema = { version = "1.1.0" }
2323
cw-utils = "1.0.1"
24-
cw1 = { path = "../../packages/cw1", version = "1.0.1" }
25-
cw2 = { path = "../../packages/cw2", version = "1.0.1" }
26-
cw1-whitelist = { path = "../cw1-whitelist", version = "1.0.1", features = ["library"] }
24+
cw1 = { path = "../../packages/cw1", version = "1.1.0" }
25+
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
26+
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.0", features = ["library"] }
2727
cosmwasm-std = { version = "1.1.0", features = ["staking"] }
2828
cw-storage-plus = "1.0.1"
2929
schemars = "0.8.1"
@@ -32,4 +32,4 @@ thiserror = "1.0.23"
3232
semver = "1"
3333

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

contracts/cw1-whitelist/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw1-whitelist"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2021"
66
description = "Implementation of an proxy contract using a whitelist"
@@ -21,8 +21,8 @@ test-utils = []
2121
[dependencies]
2222
cosmwasm-schema = { version = "1.1.0" }
2323
cw-utils = "1.0.1"
24-
cw1 = { path = "../../packages/cw1", version = "1.0.1" }
25-
cw2 = { path = "../../packages/cw2", version = "1.0.1" }
24+
cw1 = { path = "../../packages/cw1", version = "1.1.0" }
25+
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
2626
cosmwasm-std = { version = "1.1.0", features = ["staking"] }
2727
cw-storage-plus = "1.0.1"
2828
schemars = "0.8.1"

contracts/cw20-base/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw20-base"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2021"
66
description = "Basic implementation of a CosmWasm-20 compliant token"
@@ -20,8 +20,8 @@ library = []
2020
[dependencies]
2121
cosmwasm-schema = { version = "1.1.0" }
2222
cw-utils = "1.0.1"
23-
cw2 = { path = "../../packages/cw2", version = "1.0.1" }
24-
cw20 = { path = "../../packages/cw20", version = "1.0.1" }
23+
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
24+
cw20 = { path = "../../packages/cw20", version = "1.1.0" }
2525
cw-storage-plus = "1.0.1"
2626
cosmwasm-std = { version = "1.1.0" }
2727
schemars = "0.8.1"

contracts/cw20-ics20/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw20-ics20"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2021"
66
description = "IBC Enabled contracts that receives CW20 tokens and sends them over ICS20 to a remote chain"
@@ -20,11 +20,11 @@ library = []
2020
[dependencies]
2121
cosmwasm-schema = { version = "1.1.0" }
2222
cw-utils = "1.0.1"
23-
cw2 = { path = "../../packages/cw2", version = "1.0.1" }
24-
cw20 = { path = "../../packages/cw20", version = "1.0.1" }
23+
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
24+
cw20 = { path = "../../packages/cw20", version = "1.1.0" }
2525
cosmwasm-std = { version = "1.1.0", features = ["stargate"] }
2626
cw-storage-plus = "1.0.1"
27-
cw-controllers = { path = "../../packages/controllers", version = "1.0.1" }
27+
cw-controllers = { path = "../../packages/controllers", version = "1.1.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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cw3-fixed-multisig"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2021"
66
description = "Implementing cw3 with an fixed group multisig"
@@ -20,15 +20,15 @@ library = []
2020
[dependencies]
2121
cosmwasm-schema = { version = "1.1.0" }
2222
cw-utils = "1.0.1"
23-
cw2 = { path = "../../packages/cw2", version = "1.0.1" }
24-
cw3 = { path = "../../packages/cw3", version = "1.0.1" }
23+
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
24+
cw3 = { path = "../../packages/cw3", version = "1.1.0" }
2525
cw-storage-plus = "1.0.1"
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 = "1.0.1" }
33-
cw20-base = { path = "../cw20-base", version = "1.0.1", features = ["library"] }
32+
cw20 = { path = "../../packages/cw20", version = "1.1.0" }
33+
cw20-base = { path = "../cw20-base", version = "1.1.0", features = ["library"] }
3434
cw-multi-test = "0.16.1"

contracts/cw3-flex-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-flex-multisig"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
authors = ["Ethan Frey <[email protected]>"]
55
edition = "2021"
66
description = "Implementing cw3 with multiple voting patterns and dynamic groups"
@@ -20,18 +20,18 @@ library = []
2020
[dependencies]
2121
cosmwasm-schema = { version = "1.1.0" }
2222
cw-utils = "1.0.1"
23-
cw2 = { path = "../../packages/cw2", version = "1.0.1" }
24-
cw3 = { path = "../../packages/cw3", version = "1.0.1" }
25-
cw3-fixed-multisig = { path = "../cw3-fixed-multisig", version = "1.0.1", features = ["library"] }
26-
cw4 = { path = "../../packages/cw4", version = "1.0.1" }
27-
cw20 = { path = "../../packages/cw20", version = "1.0.1" }
23+
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
24+
cw3 = { path = "../../packages/cw3", version = "1.1.0" }
25+
cw3-fixed-multisig = { path = "../cw3-fixed-multisig", version = "1.1.0", features = ["library"] }
26+
cw4 = { path = "../../packages/cw4", version = "1.1.0" }
27+
cw20 = { path = "../../packages/cw20", version = "1.1.0" }
2828
cw-storage-plus = "1.0.1"
2929
cosmwasm-std = { version = "1.1.0" }
3030
schemars = "0.8.1"
3131
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
3232
thiserror = { version = "1.0.23" }
3333

3434
[dev-dependencies]
35-
cw4-group = { path = "../cw4-group", version = "1.0.1" }
35+
cw4-group = { path = "../cw4-group", version = "1.1.0" }
3636
cw-multi-test = "0.16.1"
37-
cw20-base = { path = "../cw20-base", version = "1.0.1" }
37+
cw20-base = { path = "../cw20-base", version = "1.1.0" }

0 commit comments

Comments
 (0)