Skip to content

Commit

Permalink
Merge pull request #883 from CosmWasm/release_v1.1.1
Browse files Browse the repository at this point in the history
chore: Release v1.1.1
  • Loading branch information
jawoznia committed Sep 28, 2023
2 parents 6dbbafb + 2cfa24b commit 49a2ed0
Show file tree
Hide file tree
Showing 16 changed files with 85 additions and 69 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,21 @@
# Changelog

## [v1.1.1](https://github.com/CosmWasm/cw-plus/tree/v1.1.1) (2023-09-27)

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

**Closed issues:**

- Issue in providing cw4_stake.wasm contract values for initiating [\#878](https://github.com/CosmWasm/cw-plus/issues/878)
- Bump cw2 version [\#873](https://github.com/CosmWasm/cw-plus/issues/873)

**Merged pull requests:**

- Update deps [\#882](https://github.com/CosmWasm/cw-plus/pull/882) ([jawoznia](https://github.com/jawoznia))
- Bumped Rust version and cosmwasm-check version [\#881](https://github.com/CosmWasm/cw-plus/pull/881) ([DariuszDepta](https://github.com/DariuszDepta))
- Set the resolver version to value 2 [\#880](https://github.com/CosmWasm/cw-plus/pull/880) ([DariuszDepta](https://github.com/DariuszDepta))
- Upgrade workspace-optimizer to 0.13.0 [\#876](https://github.com/CosmWasm/cw-plus/pull/876) ([webmaster128](https://github.com/webmaster128))

## [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)
Expand Down
50 changes: 25 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
@@ -1,6 +1,6 @@
[package]
name = "cw1-subkeys"
version = "1.1.0"
version = "1.1.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
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.4.0" }
cw-utils = "1.0.1"
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 = [
cw1 = { path = "../../packages/cw1", version = "1.1.1" }
cw2 = { path = "../../packages/cw2", version = "1.1.1" }
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.1", features = [
"library",
] }
cosmwasm-std = { version = "1.4.0", features = ["staking"] }
Expand All @@ -34,7 +34,7 @@ thiserror = "1.0.49"
semver = "1"

[dev-dependencies]
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.0", features = [
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.1", features = [
"library",
"test-utils",
] }
6 changes: 3 additions & 3 deletions contracts/cw1-whitelist/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cw1-whitelist"
version = "1.1.0"
version = "1.1.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2021"
description = "Implementation of an proxy contract using a whitelist"
Expand All @@ -21,8 +21,8 @@ test-utils = []
[dependencies]
cosmwasm-schema = { version = "1.4.0" }
cw-utils = "1.0.1"
cw1 = { path = "../../packages/cw1", version = "1.1.0" }
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
cw1 = { path = "../../packages/cw1", version = "1.1.1" }
cw2 = { path = "../../packages/cw2", version = "1.1.1" }
cosmwasm-std = { version = "1.4.0", features = ["staking"] }
cw-storage-plus = "1.1.0"
schemars = "0.8.15"
Expand Down
6 changes: 3 additions & 3 deletions contracts/cw20-base/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cw20-base"
version = "1.1.0"
version = "1.1.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2021"
description = "Basic implementation of a CosmWasm-20 compliant token"
Expand All @@ -20,8 +20,8 @@ library = []
[dependencies]
cosmwasm-schema = { version = "1.4.0" }
cw-utils = "1.0.1"
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
cw20 = { path = "../../packages/cw20", version = "1.1.0" }
cw2 = { path = "../../packages/cw2", version = "1.1.1" }
cw20 = { path = "../../packages/cw20", version = "1.1.1" }
cw-storage-plus = "1.1.0"
cosmwasm-std = { version = "1.4.0" }
schemars = "0.8.15"
Expand Down
8 changes: 4 additions & 4 deletions contracts/cw20-ics20/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cw20-ics20"
version = "1.1.0"
version = "1.1.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
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.4.0" }
cw-utils = "1.0.1"
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
cw20 = { path = "../../packages/cw20", version = "1.1.0" }
cw2 = { path = "../../packages/cw2", version = "1.1.1" }
cw20 = { path = "../../packages/cw20", version = "1.1.1" }
cosmwasm-std = { version = "1.4.0", features = ["stargate"] }
cw-storage-plus = "1.1.0"
cw-controllers = { path = "../../packages/controllers", version = "1.1.0" }
cw-controllers = { path = "../../packages/controllers", version = "1.1.1" }
schemars = "0.8.15"
semver = "1"
serde = { version = "1.0.188", default-features = false, features = ["derive"] }
Expand Down
10 changes: 5 additions & 5 deletions contracts/cw3-fixed-multisig/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cw3-fixed-multisig"
version = "1.1.0"
version = "1.1.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2021"
description = "Implementing cw3 with an fixed group multisig"
Expand All @@ -20,15 +20,15 @@ library = []
[dependencies]
cosmwasm-schema = { version = "1.4.0" }
cw-utils = "1.0.1"
cw2 = { path = "../../packages/cw2", version = "1.1.0" }
cw3 = { path = "../../packages/cw3", version = "1.1.0" }
cw2 = { path = "../../packages/cw2", version = "1.1.1" }
cw3 = { path = "../../packages/cw3", version = "1.1.1" }
cw-storage-plus = "1.1.0"
cosmwasm-std = { version = "1.4.0" }
schemars = "0.8.15"
serde = { version = "1.0.188", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.49" }

[dev-dependencies]
cw20 = { path = "../../packages/cw20", version = "1.1.0" }
cw20-base = { path = "../cw20-base", version = "1.1.0", features = ["library"] }
cw20 = { path = "../../packages/cw20", version = "1.1.1" }
cw20-base = { path = "../cw20-base", version = "1.1.1", features = ["library"] }
cw-multi-test = "0.16.1"
16 changes: 8 additions & 8 deletions contracts/cw3-flex-multisig/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cw3-flex-multisig"
version = "1.1.0"
version = "1.1.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2021"
description = "Implementing cw3 with multiple voting patterns and dynamic groups"
Expand All @@ -20,20 +20,20 @@ library = []
[dependencies]
cosmwasm-schema = { version = "1.4.0" }
cw-utils = "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 = [
cw2 = { path = "../../packages/cw2", version = "1.1.1" }
cw3 = { path = "../../packages/cw3", version = "1.1.1" }
cw3-fixed-multisig = { path = "../cw3-fixed-multisig", version = "1.1.1", features = [
"library",
] }
cw4 = { path = "../../packages/cw4", version = "1.1.0" }
cw20 = { path = "../../packages/cw20", version = "1.1.0" }
cw4 = { path = "../../packages/cw4", version = "1.1.1" }
cw20 = { path = "../../packages/cw20", version = "1.1.1" }
cw-storage-plus = "1.1.0"
cosmwasm-std = { version = "1.4.0" }
schemars = "0.8.15"
serde = { version = "1.0.188", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.49" }

[dev-dependencies]
cw4-group = { path = "../cw4-group", version = "1.1.0" }
cw4-group = { path = "../cw4-group", version = "1.1.1" }
cw-multi-test = "0.16.5"
cw20-base = { path = "../cw20-base", version = "1.1.0" }
cw20-base = { path = "../cw20-base", version = "1.1.1" }

0 comments on commit 49a2ed0

Please sign in to comment.