Skip to content

Commit

Permalink
Merge pull request #887 from CosmWasm/release-1.1.2
Browse files Browse the repository at this point in the history
Release 1.1.2
  • Loading branch information
chipshort authored Nov 23, 2023
2 parents 12a5f5a + bf3dd96 commit d338246
Show file tree
Hide file tree
Showing 16 changed files with 74 additions and 66 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [1.1.2](https://github.com/CosmWasm/cw-plus/tree/1.1.2) (2023-11-23)

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

**Merged pull requests:**

- Add `ensure_from_older_version` [\#886](https://github.com/CosmWasm/cw-plus/pull/886) ([chipshort](https://github.com/chipshort))

## [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)
Expand Down
44 changes: 22 additions & 22 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.1.1"
version = "1.1.2"
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.1" }
cw2 = { path = "../../packages/cw2", version = "1.1.1" }
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.1", features = [
cw1 = { path = "../../packages/cw1", version = "1.1.2" }
cw2 = { path = "../../packages/cw2", version = "1.1.2" }
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.2", 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.1", features = [
cw1-whitelist = { path = "../cw1-whitelist", version = "1.1.2", 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.1.1"
version = "1.1.2"
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.1" }
cw2 = { path = "../../packages/cw2", version = "1.1.1" }
cw1 = { path = "../../packages/cw1", version = "1.1.2" }
cw2 = { path = "../../packages/cw2", version = "1.1.2" }
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-base"
version = "1.1.1"
version = "1.1.2"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2021"
description = "Basic implementation of a CosmWasm-20 compliant token"
Expand All @@ -19,8 +19,8 @@ library = []

[dependencies]
cosmwasm-schema = { version = "1.4.0" }
cw2 = { path = "../../packages/cw2", version = "1.1.1" }
cw20 = { path = "../../packages/cw20", version = "1.1.1" }
cw2 = { path = "../../packages/cw2", version = "1.1.2" }
cw20 = { path = "../../packages/cw20", version = "1.1.2" }
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw20-ics20"
version = "1.1.1"
version = "1.1.2"
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.1" }
cw20 = { path = "../../packages/cw20", version = "1.1.1" }
cw2 = { path = "../../packages/cw2", version = "1.1.2" }
cw20 = { path = "../../packages/cw20", version = "1.1.2" }
cosmwasm-std = { version = "1.4.0", features = ["stargate"] }
cw-storage-plus = "1.1.0"
cw-controllers = { path = "../../packages/controllers", version = "1.1.1" }
cw-controllers = { path = "../../packages/controllers", version = "1.1.2" }
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw3-fixed-multisig"
version = "1.1.1"
version = "1.1.2"
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.1" }
cw3 = { path = "../../packages/cw3", version = "1.1.1" }
cw2 = { path = "../../packages/cw2", version = "1.1.2" }
cw3 = { path = "../../packages/cw3", version = "1.1.2" }
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.1" }
cw20-base = { path = "../cw20-base", version = "1.1.1", features = ["library"] }
cw20 = { path = "../../packages/cw20", version = "1.1.2" }
cw20-base = { path = "../cw20-base", version = "1.1.2", 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.1.1"
version = "1.1.2"
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.1" }
cw3 = { path = "../../packages/cw3", version = "1.1.1" }
cw3-fixed-multisig = { path = "../cw3-fixed-multisig", version = "1.1.1", features = [
cw2 = { path = "../../packages/cw2", version = "1.1.2" }
cw3 = { path = "../../packages/cw3", version = "1.1.2" }
cw3-fixed-multisig = { path = "../cw3-fixed-multisig", version = "1.1.2", features = [
"library",
] }
cw4 = { path = "../../packages/cw4", version = "1.1.1" }
cw20 = { path = "../../packages/cw20", version = "1.1.1" }
cw4 = { path = "../../packages/cw4", version = "1.1.2" }
cw20 = { path = "../../packages/cw20", version = "1.1.2" }
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.1" }
cw4-group = { path = "../cw4-group", version = "1.1.2" }
cw-multi-test = "0.16.5"
cw20-base = { path = "../cw20-base", version = "1.1.1" }
cw20-base = { path = "../cw20-base", version = "1.1.2" }
8 changes: 4 additions & 4 deletions contracts/cw4-group/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw4-group"
version = "1.1.1"
version = "1.1.2"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
edition = "2021"
description = "Simple cw4 implementation of group membership controlled by admin "
Expand Down Expand Up @@ -28,9 +28,9 @@ library = []
[dependencies]
cosmwasm-schema = { version = "1.4.0" }
cw-utils = "1.0.1"
cw2 = { path = "../../packages/cw2", version = "1.1.1" }
cw4 = { path = "../../packages/cw4", version = "1.1.1" }
cw-controllers = { path = "../../packages/controllers", version = "1.1.1" }
cw2 = { path = "../../packages/cw2", version = "1.1.2" }
cw4 = { path = "../../packages/cw4", version = "1.1.2" }
cw-controllers = { path = "../../packages/controllers", version = "1.1.2" }
cw-storage-plus = "1.1.0"
cosmwasm-std = { version = "1.4.0" }
schemars = "0.8.15"
Expand Down
Loading

0 comments on commit d338246

Please sign in to comment.