Skip to content

Commit

Permalink
Merge pull request CosmWasm#875 from CosmWasm/release-1-1-0
Browse files Browse the repository at this point in the history
Released 1.1.0
  • Loading branch information
chipshort authored Jun 21, 2023
2 parents de1fb0b + 731d853 commit fb88067
Show file tree
Hide file tree
Showing 16 changed files with 94 additions and 71 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## [v1.1.0](https://github.com/CosmWasm/cw-plus/tree/v1.1.0) (2023-06-19)

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

**Closed issues:**

- thread 'main' panicked at 'called `Result::unwrap\(\) [\#867](https://github.com/CosmWasm/cw-plus/issues/867)
- CW20 All accounts query sorting issue [\#864](https://github.com/CosmWasm/cw-plus/issues/864)
- discussion: cw20-base methods should be nonpayable, or forward funds [\#862](https://github.com/CosmWasm/cw-plus/issues/862)
- CW2: add a `cw2::VersionError` error type [\#857](https://github.com/CosmWasm/cw-plus/issues/857)

**Merged pull requests:**

- Update optimizer to latest [\#870](https://github.com/CosmWasm/cw-plus/pull/870) ([TrevorJTClarke](https://github.com/TrevorJTClarke))
- Added optional memo to ics20 packets [\#868](https://github.com/CosmWasm/cw-plus/pull/868) ([nicolaslara](https://github.com/nicolaslara))
- Remove unnecessary zero checks [\#863](https://github.com/CosmWasm/cw-plus/pull/863) ([webmaster128](https://github.com/webmaster128))
- 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))
- Address minor typos in cw1 comments and README [\#860](https://github.com/CosmWasm/cw-plus/pull/860) ([mikedotexe](https://github.com/mikedotexe))
- Update workspace-optimizer version in README to 0.12.11 [\#859](https://github.com/CosmWasm/cw-plus/pull/859) ([mikedotexe](https://github.com/mikedotexe))
- CW2: add a method to assert contract version [\#858](https://github.com/CosmWasm/cw-plus/pull/858) ([larry0x](https://github.com/larry0x))
- Remove non-existent profile [\#856](https://github.com/CosmWasm/cw-plus/pull/856) ([mandrean](https://github.com/mandrean))

## [v1.0.1](https://github.com/CosmWasm/cw-plus/tree/v1.0.1) (2022-12-16)

[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v1.0.0...v1.0.1)
Expand Down
51 changes: 26 additions & 25 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 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 = "1.0.1"
version = "1.1.0"
authors = ["Ethan Frey <[email protected]>"]
edition = "2021"
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract"
Expand All @@ -21,9 +21,9 @@ test-utils = []
[dependencies]
cosmwasm-schema = { version = "1.1.0" }
cw-utils = "1.0.1"
cw1 = { path = "../../packages/cw1", version = "1.0.1" }
cw2 = { path = "../../packages/cw2", version = "1.0.1" }
cw1-whitelist = { path = "../cw1-whitelist", version = "1.0.1", features = ["library"] }
cw1 = { path = "../../packages/cw1", version = "1.1.0" }
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.0", features = ["library"] }
cosmwasm-std = { version = "1.1.0", features = ["staking"] }
cw-storage-plus = "1.0.1"
schemars = "0.8.1"
Expand All @@ -32,4 +32,4 @@ thiserror = "1.0.23"
semver = "1"

[dev-dependencies]
cw1-whitelist = { path = "../cw1-whitelist", version = "1.0.1", features = ["library", "test-utils"] }
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.0", features = ["library", "test-utils"] }
6 changes: 3 additions & 3 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 = "1.0.1"
version = "1.1.0"
authors = ["Ethan Frey <[email protected]>"]
edition = "2021"
description = "Implementation of an proxy contract using a whitelist"
Expand All @@ -21,8 +21,8 @@ test-utils = []
[dependencies]
cosmwasm-schema = { version = "1.1.0" }
cw-utils = "1.0.1"
cw1 = { path = "../../packages/cw1", version = "1.0.1" }
cw2 = { path = "../../packages/cw2", version = "1.0.1" }
cw1 = { path = "../../packages/cw1", version = "1.1.0" }
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
cosmwasm-std = { version = "1.1.0", features = ["staking"] }
cw-storage-plus = "1.0.1"
schemars = "0.8.1"
Expand Down
6 changes: 3 additions & 3 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 = "1.0.1"
version = "1.1.0"
authors = ["Ethan Frey <[email protected]>"]
edition = "2021"
description = "Basic implementation of a CosmWasm-20 compliant token"
Expand All @@ -20,8 +20,8 @@ library = []
[dependencies]
cosmwasm-schema = { version = "1.1.0" }
cw-utils = "1.0.1"
cw2 = { path = "../../packages/cw2", version = "1.0.1" }
cw20 = { path = "../../packages/cw20", version = "1.0.1" }
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
cw20 = { path = "../../packages/cw20", version = "1.1.0" }
cw-storage-plus = "1.0.1"
cosmwasm-std = { version = "1.1.0" }
schemars = "0.8.1"
Expand Down
8 changes: 4 additions & 4 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 = "1.0.1"
version = "1.1.0"
authors = ["Ethan Frey <[email protected]>"]
edition = "2021"
description = "IBC Enabled contracts that receives CW20 tokens and sends them over ICS20 to a remote chain"
Expand All @@ -20,11 +20,11 @@ library = []
[dependencies]
cosmwasm-schema = { version = "1.1.0" }
cw-utils = "1.0.1"
cw2 = { path = "../../packages/cw2", version = "1.0.1" }
cw20 = { path = "../../packages/cw20", version = "1.0.1" }
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
cw20 = { path = "../../packages/cw20", version = "1.1.0" }
cosmwasm-std = { version = "1.1.0", features = ["stargate"] }
cw-storage-plus = "1.0.1"
cw-controllers = { path = "../../packages/controllers", version = "1.0.1" }
cw-controllers = { path = "../../packages/controllers", version = "1.1.0" }
schemars = "0.8.1"
semver = "1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
Expand Down
10 changes: 5 additions & 5 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 = "1.0.1"
version = "1.1.0"
authors = ["Ethan Frey <[email protected]>"]
edition = "2021"
description = "Implementing cw3 with an fixed group multisig"
Expand All @@ -20,15 +20,15 @@ library = []
[dependencies]
cosmwasm-schema = { version = "1.1.0" }
cw-utils = "1.0.1"
cw2 = { path = "../../packages/cw2", version = "1.0.1" }
cw3 = { path = "../../packages/cw3", version = "1.0.1" }
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
cw3 = { path = "../../packages/cw3", version = "1.1.0" }
cw-storage-plus = "1.0.1"
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 = "1.0.1" }
cw20-base = { path = "../cw20-base", version = "1.0.1", features = ["library"] }
cw20 = { path = "../../packages/cw20", version = "1.1.0" }
cw20-base = { path = "../cw20-base", version = "1.1.0", features = ["library"] }
cw-multi-test = "0.16.1"
16 changes: 8 additions & 8 deletions contracts/cw3-flex-multisig/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw3-flex-multisig"
version = "1.0.1"
version = "1.1.0"
authors = ["Ethan Frey <[email protected]>"]
edition = "2021"
description = "Implementing cw3 with multiple voting patterns and dynamic groups"
Expand All @@ -20,18 +20,18 @@ library = []
[dependencies]
cosmwasm-schema = { version = "1.1.0" }
cw-utils = "1.0.1"
cw2 = { path = "../../packages/cw2", version = "1.0.1" }
cw3 = { path = "../../packages/cw3", version = "1.0.1" }
cw3-fixed-multisig = { path = "../cw3-fixed-multisig", version = "1.0.1", features = ["library"] }
cw4 = { path = "../../packages/cw4", version = "1.0.1" }
cw20 = { path = "../../packages/cw20", version = "1.0.1" }
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
cw3 = { path = "../../packages/cw3", version = "1.1.0" }
cw3-fixed-multisig = { path = "../cw3-fixed-multisig", version = "1.1.0", features = ["library"] }
cw4 = { path = "../../packages/cw4", version = "1.1.0" }
cw20 = { path = "../../packages/cw20", version = "1.1.0" }
cw-storage-plus = "1.0.1"
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]
cw4-group = { path = "../cw4-group", version = "1.0.1" }
cw4-group = { path = "../cw4-group", version = "1.1.0" }
cw-multi-test = "0.16.1"
cw20-base = { path = "../cw20-base", version = "1.0.1" }
cw20-base = { path = "../cw20-base", version = "1.1.0" }
Loading

0 comments on commit fb88067

Please sign in to comment.