Skip to content

Commit

Permalink
Merge pull request #854 from CosmWasm/release-1-0-1
Browse files Browse the repository at this point in the history
Release `v1.0.1`
  • Loading branch information
ueco-jb committed Dec 19, 2022
2 parents aec2b32 + e0bc730 commit 4da476f
Show file tree
Hide file tree
Showing 16 changed files with 88 additions and 74 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,19 @@
# Changelog

## [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)

**Closed issues:**

- Package versioning is a huge mess right now [\#851](https://github.com/CosmWasm/cw-plus/issues/851)
- MINT function is not working [\#848](https://github.com/CosmWasm/cw-plus/issues/848)
- Document the release process [\#810](https://github.com/CosmWasm/cw-plus/issues/810)

**Merged pull requests:**

- Update dependencies [\#853](https://github.com/CosmWasm/cw-plus/pull/853) ([apollo-sturdy](https://github.com/apollo-sturdy))

## [v1.0.0](https://github.com/CosmWasm/cw-plus/tree/v1.0.0) (2022-11-29)

[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v0.16.0...v1.0.0)
Expand Down
54 changes: 27 additions & 27 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.0.0"
version = "1.0.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.1.0" }
cw-utils = "1.0.1"
cw1 = { path = "../../packages/cw1", version = "1.0.0" }
cw2 = { path = "../../packages/cw2", version = "1.0.0" }
cw1-whitelist = { path = "../cw1-whitelist", version = "1.0.0", features = ["library"] }
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"] }
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.0", features = ["library", "test-utils"] }
cw1-whitelist = { path = "../cw1-whitelist", version = "1.0.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.0.0"
version = "1.0.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.1.0" }
cw-utils = "1.0.1"
cw1 = { path = "../../packages/cw1", version = "1.0.0" }
cw2 = { path = "../../packages/cw2", version = "1.0.0" }
cw1 = { path = "../../packages/cw1", version = "1.0.1" }
cw2 = { path = "../../packages/cw2", version = "1.0.1" }
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
@@ -1,6 +1,6 @@
[package]
name = "cw20-base"
version = "1.0.0"
version = "1.0.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.1.0" }
cw-utils = "1.0.1"
cw2 = { path = "../../packages/cw2", version = "1.0.0" }
cw20 = { path = "../../packages/cw20", version = "1.0.0" }
cw2 = { path = "../../packages/cw2", version = "1.0.1" }
cw20 = { path = "../../packages/cw20", version = "1.0.1" }
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
@@ -1,6 +1,6 @@
[package]
name = "cw20-ics20"
version = "1.0.0"
version = "1.0.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.1.0" }
cw-utils = "1.0.1"
cw2 = { path = "../../packages/cw2", version = "1.0.0" }
cw20 = { path = "../../packages/cw20", version = "1.0.0" }
cw2 = { path = "../../packages/cw2", version = "1.0.1" }
cw20 = { path = "../../packages/cw20", version = "1.0.1" }
cosmwasm-std = { version = "1.1.0", features = ["stargate"] }
cw-storage-plus = "1.0.1"
cw-controllers = { path = "../../packages/controllers", version = "1.0.0" }
cw-controllers = { path = "../../packages/controllers", version = "1.0.1" }
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
@@ -1,6 +1,6 @@
[package]
name = "cw3-fixed-multisig"
version = "1.0.0"
version = "1.0.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.1.0" }
cw-utils = "1.0.1"
cw2 = { path = "../../packages/cw2", version = "1.0.0" }
cw3 = { path = "../../packages/cw3", version = "1.0.0" }
cw2 = { path = "../../packages/cw2", version = "1.0.1" }
cw3 = { path = "../../packages/cw3", version = "1.0.1" }
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.0" }
cw20-base = { path = "../cw20-base", version = "1.0.0", features = ["library"] }
cw20 = { path = "../../packages/cw20", version = "1.0.1" }
cw20-base = { path = "../cw20-base", version = "1.0.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.0.0"
version = "1.0.1"
authors = ["Ethan Frey <ethanfrey@users.noreply.github.com>"]
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.0" }
cw3 = { path = "../../packages/cw3", version = "1.0.0" }
cw3-fixed-multisig = { path = "../cw3-fixed-multisig", version = "1.0.0", features = ["library"] }
cw4 = { path = "../../packages/cw4", version = "1.0.0" }
cw20 = { path = "../../packages/cw20", version = "1.0.0" }
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" }
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.0" }
cw4-group = { path = "../cw4-group", version = "1.0.1" }
cw-multi-test = "0.16.1"
cw20-base = { path = "../cw20-base", version = "1.0.0" }
cw20-base = { path = "../cw20-base", version = "1.0.1" }

0 comments on commit 4da476f

Please sign in to comment.