Skip to content

Commit

Permalink
Merge pull request #847 from CosmWasm/release-1.0
Browse files Browse the repository at this point in the history
1.0.0 release
  • Loading branch information
uint authored Nov 29, 2022
2 parents 7949844 + 160f311 commit 1568d9f
Show file tree
Hide file tree
Showing 16 changed files with 107 additions and 69 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# Changelog

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

**Implemented enhancements:**

- Proposal for improving contract interfaces [\#391](https://github.com/CosmWasm/cw-plus/issues/391)

**Closed issues:**

- u [\#840](https://github.com/CosmWasm/cw-plus/issues/840)
- Workspace optimizer build failed [\#838](https://github.com/CosmWasm/cw-plus/issues/838)
- Simplify licenses [\#833](https://github.com/CosmWasm/cw-plus/issues/833)
- Update README [\#832](https://github.com/CosmWasm/cw-plus/issues/832)
- Remove `cw1155` and `cw1155-base` [\#830](https://github.com/CosmWasm/cw-plus/issues/830)
- Standardize protocol events [\#823](https://github.com/CosmWasm/cw-plus/issues/823)
- Pull out `storage-plus`, `multitest` and `utils` into a separate repo [\#816](https://github.com/CosmWasm/cw-plus/issues/816)
- Backport from DAO DAO: optionally charge to make proposal [\#742](https://github.com/CosmWasm/cw-plus/issues/742)
- Cannot find Contract address and interface verification [\#679](https://github.com/CosmWasm/cw-plus/issues/679)
- Investigate JSON Schema -\> html/md generator [\#573](https://github.com/CosmWasm/cw-plus/issues/573)
- Simple framework for gas benchmarking [\#507](https://github.com/CosmWasm/cw-plus/issues/507)
- Benchmark "ng" vs. "classic" frameworks [\#505](https://github.com/CosmWasm/cw-plus/issues/505)
- Update reimplemented cw1-whitelist contract, so it uses the custom attribute [\#496](https://github.com/CosmWasm/cw-plus/issues/496)
- Implement attribute macro for trait interface generating boilerplate specific for cw1-whitelist [\#495](https://github.com/CosmWasm/cw-plus/issues/495)
- Deriving structural interfaces for contracts [\#493](https://github.com/CosmWasm/cw-plus/issues/493)
- Accept &QuerierWrapper not &Querier in helpers [\#390](https://github.com/CosmWasm/cw-plus/issues/390)

**Merged pull requests:**

- Standardize spec events [\#845](https://github.com/CosmWasm/cw-plus/pull/845) ([uint](https://github.com/uint))
- Add contributing guidelines [\#841](https://github.com/CosmWasm/cw-plus/pull/841) ([uint](https://github.com/uint))
- Use QuerierWrapper not Querier in cw20 helpers [\#839](https://github.com/CosmWasm/cw-plus/pull/839) ([uint](https://github.com/uint))
- Update CI to Rust 1.64 [\#837](https://github.com/CosmWasm/cw-plus/pull/837) ([uint](https://github.com/uint))
- `README.md` update [\#836](https://github.com/CosmWasm/cw-plus/pull/836) ([uint](https://github.com/uint))
- Remove the AGPL license [\#835](https://github.com/CosmWasm/cw-plus/pull/835) ([uint](https://github.com/uint))
- Move `utils`, `storage-plus`, `multitest`; remove `cw1155` stuff [\#834](https://github.com/CosmWasm/cw-plus/pull/834) ([uint](https://github.com/uint))
- Add an optional proposal deposit to cw3-flex-multisig [\#751](https://github.com/CosmWasm/cw-plus/pull/751) ([0xekez](https://github.com/0xekez))

## [v0.16.0](https://github.com/CosmWasm/cw-plus/tree/v0.16.0) (2022-10-14)

[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v0.15.1...v0.16.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw1-subkeys"
version = "0.16.0"
version = "1.0.0"
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 = "0.16.0"
cw1 = { path = "../../packages/cw1", version = "0.16.0" }
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.16.0", features = ["library"] }
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"] }
cosmwasm-std = { version = "1.1.0", features = ["staking"] }
cw-storage-plus = "0.16.0"
schemars = "0.8.1"
Expand All @@ -32,4 +32,4 @@ thiserror = "1.0.23"
semver = "1"

[dev-dependencies]
cw1-whitelist = { path = "../cw1-whitelist", version = "0.16.0", features = ["library", "test-utils"] }
cw1-whitelist = { path = "../cw1-whitelist", version = "1.0.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 = "0.16.0"
version = "1.0.0"
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 = "0.16.0"
cw1 = { path = "../../packages/cw1", version = "0.16.0" }
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
cw1 = { path = "../../packages/cw1", version = "1.0.0" }
cw2 = { path = "../../packages/cw2", version = "1.0.0" }
cosmwasm-std = { version = "1.1.0", features = ["staking"] }
cw-storage-plus = "0.16.0"
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 = "0.16.0"
version = "1.0.0"
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 = "0.16.0"
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
cw20 = { path = "../../packages/cw20", version = "0.16.0" }
cw2 = { path = "../../packages/cw2", version = "1.0.0" }
cw20 = { path = "../../packages/cw20", version = "1.0.0" }
cw-storage-plus = "0.16.0"
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 = "0.16.0"
version = "1.0.0"
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 = "0.16.0"
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
cw20 = { path = "../../packages/cw20", version = "0.16.0" }
cw2 = { path = "../../packages/cw2", version = "1.0.0" }
cw20 = { path = "../../packages/cw20", version = "1.0.0" }
cosmwasm-std = { version = "1.1.0", features = ["stargate"] }
cw-storage-plus = "0.16.0"
cw-controllers = { path = "../../packages/controllers", version = "0.16.0" }
cw-controllers = { path = "../../packages/controllers", version = "1.0.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 = "0.16.0"
version = "1.0.0"
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 = "0.16.0"
cw2 = { path = "../../packages/cw2", version = "0.16.0" }
cw3 = { path = "../../packages/cw3", version = "0.16.0" }
cw2 = { path = "../../packages/cw2", version = "1.0.0" }
cw3 = { path = "../../packages/cw3", version = "1.0.0" }
cw-storage-plus = "0.16.0"
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 = "0.16.0" }
cw20-base = { path = "../cw20-base", version = "0.16.0", features = ["library"] }
cw20 = { path = "../../packages/cw20", version = "1.0.0" }
cw20-base = { path = "../cw20-base", version = "1.0.0", features = ["library"] }
cw-multi-test = "0.16.0"
Loading

0 comments on commit 1568d9f

Please sign in to comment.