Skip to content

Commit

Permalink
Merge pull request #731 from CosmWasm/release-0.13.3
Browse files Browse the repository at this point in the history
Release 0.13.3
  • Loading branch information
maurolacy authored Jun 2, 2022
2 parents b54ea50 + 4ca2f33 commit 6d20854
Show file tree
Hide file tree
Showing 25 changed files with 186 additions and 146 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -741,7 +741,7 @@ jobs:
- run:
name: Build development contracts
command: |
docker run --volumes-from with_code cosmwasm/workspace-optimizer:0.12.4
docker run --volumes-from with_code cosmwasm/workspace-optimizer:0.12.6
docker cp with_code:/code/artifacts ./artifacts
- run:
name: Show data
Expand Down
42 changes: 41 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,47 @@

## [Unreleased](https://github.com/CosmWasm/cw-plus/tree/HEAD)

[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v0.13.1...HEAD)
[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v0.13.3...HEAD)

## [v0.13.3](https://github.com/CosmWasm/cw-plus/tree/v0.13.3) (2022-06-01)

[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v0.13.2...v0.13.3)

**Closed issues:**

- Add code coverage tooling to the CI [\#172](https://github.com/CosmWasm/cw-plus/issues/172)

**Merged pull requests:**

- Repo reclippization [\#721](https://github.com/CosmWasm/cw-plus/pull/721) ([hashedone](https://github.com/hashedone))
- Add code coverage to CI [\#715](https://github.com/CosmWasm/cw-plus/pull/715) ([maurolacy](https://github.com/maurolacy))
- Update item.rs: typo [\#713](https://github.com/CosmWasm/cw-plus/pull/713) ([rtviii](https://github.com/rtviii))
- Update link to new shared CosmWasm SECURITY.md [\#701](https://github.com/CosmWasm/cw-plus/pull/701) ([webmaster128](https://github.com/webmaster128))
- Add existence checking to indexed map [\#700](https://github.com/CosmWasm/cw-plus/pull/700) ([shanev](https://github.com/shanev))

**Closed issues:**

- error: could not compile `ff` when running cargo test on cw20-base contract [\#714](https://github.com/CosmWasm/cw-plus/issues/714)

## [v0.13.2](https://github.com/CosmWasm/cw-plus/tree/v0.13.2) (2022-04-11)

[Full Changelog](https://github.com/CosmWasm/cw-plus/compare/v0.13.1...v0.13.2)

**Closed issues:**

- `KeyDeserialize` trait is private making custom keys and generics over keys not possible. [\#691](https://github.com/CosmWasm/cw-plus/issues/691)
- unresolved import cosmwasm\_std::testing [\#681](https://github.com/CosmWasm/cw-plus/issues/681)
- Add non-owned `range_de` [\#463](https://github.com/CosmWasm/cw-plus/issues/463)

**Merged pull requests:**

- Upgrade all contracts and packages to cosmwasm-std beta8 [\#699](https://github.com/CosmWasm/cw-plus/pull/699) ([the-frey](https://github.com/the-frey))
- Remove dead links [\#698](https://github.com/CosmWasm/cw-plus/pull/698) ([Psyf](https://github.com/Psyf))
- cw20-ics20: fix missing assert [\#697](https://github.com/CosmWasm/cw-plus/pull/697) ([giansalex](https://github.com/giansalex))
- storage-plus: Implement u128 key [\#694](https://github.com/CosmWasm/cw-plus/pull/694) ([orkunkl](https://github.com/orkunkl))
- Make `KeyDeserialize` trait public [\#692](https://github.com/CosmWasm/cw-plus/pull/692) ([maurolacy](https://github.com/maurolacy))
- Typo in QueryMsg::DownloadLogo description [\#690](https://github.com/CosmWasm/cw-plus/pull/690) ([nnoln](https://github.com/nnoln))
- Fix publish.sh help / args [\#689](https://github.com/CosmWasm/cw-plus/pull/689) ([maurolacy](https://github.com/maurolacy))

## [v0.13.1](https://github.com/CosmWasm/cw-plus/tree/v0.13.1) (2022-03-25)

Expand Down
40 changes: 20 additions & 20 deletions Cargo.lock

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

18 changes: 9 additions & 9 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.13.2"
version = "0.13.3"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Implement subkeys for authorizing native tokens as a cw1 proxy contract"
Expand All @@ -19,17 +19,17 @@ library = []
test-utils = []

[dependencies]
cw-utils = { path = "../../packages/utils", version = "0.13.2" }
cw1 = { path = "../../packages/cw1", version = "0.13.2" }
cw2 = { path = "../../packages/cw2", version = "0.13.2" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.2", features = ["library"] }
cosmwasm-std = { version = "1.0.0-beta8", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.2" }
cw-utils = { path = "../../packages/utils", version = "0.13.3" }
cw1 = { path = "../../packages/cw1", version = "0.13.3" }
cw2 = { path = "../../packages/cw2", version = "0.13.3" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.3", features = ["library"] }
cosmwasm-std = { version = "1.0.0", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.3" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = "1.0.23"
semver = "1"

[dev-dependencies]
cosmwasm-schema = { version = "1.0.0-beta8" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.2", features = ["library", "test-utils"] }
cosmwasm-schema = { version = "1.0.0" }
cw1-whitelist = { path = "../cw1-whitelist", version = "0.13.3", features = ["library", "test-utils"] }
18 changes: 9 additions & 9 deletions contracts/cw1-whitelist-ng/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw1-whitelist-ng"
version = "0.13.2"
version = "0.13.3"
authors = ["Bartłomiej Kuras <[email protected]>"]
edition = "2018"
description = "Implementation of an proxy contract using a whitelist"
Expand All @@ -22,20 +22,20 @@ querier = ["library"]
multitest = ["cw-multi-test", "anyhow"]

[dependencies]
cw-utils = { path = "../../packages/utils", version = "0.13.2" }
cw1 = { path = "../../packages/cw1", version = "0.13.2" }
cw2 = { path = "../../packages/cw2", version = "0.13.2" }
cosmwasm-std = { version = "1.0.0-beta8", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.2" }
cw-utils = { path = "../../packages/utils", version = "0.13.3" }
cw1 = { path = "../../packages/cw1", version = "0.13.3" }
cw2 = { path = "../../packages/cw2", version = "0.13.3" }
cosmwasm-std = { version = "1.0.0", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.3" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.23" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.2", optional = true }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.3", optional = true }
anyhow = { version = "1", optional = true }

[dev-dependencies]
anyhow = "1"
assert_matches = "1"
cosmwasm-schema = { version = "1.0.0-beta8" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.2" }
cosmwasm-schema = { version = "1.0.0" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.3" }
derivative = "2"
16 changes: 8 additions & 8 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.13.2"
version = "0.13.3"
authors = ["Ethan Frey <[email protected]>"]
edition = "2018"
description = "Implementation of an proxy contract using a whitelist"
Expand All @@ -19,18 +19,18 @@ library = []
test-utils = []

[dependencies]
cw-utils = { path = "../../packages/utils", version = "0.13.2" }
cw1 = { path = "../../packages/cw1", version = "0.13.2" }
cw2 = { path = "../../packages/cw2", version = "0.13.2" }
cosmwasm-std = { version = "1.0.0-beta8", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.2" }
cw-utils = { path = "../../packages/utils", version = "0.13.3" }
cw1 = { path = "../../packages/cw1", version = "0.13.3" }
cw2 = { path = "../../packages/cw2", version = "0.13.3" }
cosmwasm-std = { version = "1.0.0", features = ["staking"] }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.3" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.23" }

[dev-dependencies]
anyhow = "1"
assert_matches = "1"
cosmwasm-schema = { version = "1.0.0-beta8" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.2" }
cosmwasm-schema = { version = "1.0.0" }
cw-multi-test = { path = "../../packages/multi-test", version = "0.13.3" }
derivative = "2"
14 changes: 7 additions & 7 deletions contracts/cw1155-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cw1155-base"
version = "0.13.2"
version = "0.13.3"
authors = ["Huang Yi <[email protected]>"]
edition = "2018"
description = "Basic implementation of a CosmWasm-1155 compliant token"
Expand All @@ -18,14 +18,14 @@ backtraces = ["cosmwasm-std/backtraces"]
library = []

[dependencies]
cw-utils = { path = "../../packages/utils", version = "0.13.2" }
cw2 = { path = "../../packages/cw2", version = "0.13.2" }
cw1155 = { path = "../../packages/cw1155", version = "0.13.2" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.2" }
cosmwasm-std = { version = "1.0.0-beta8" }
cw-utils = { path = "../../packages/utils", version = "0.13.3" }
cw2 = { path = "../../packages/cw2", version = "0.13.3" }
cw1155 = { path = "../../packages/cw1155", version = "0.13.3" }
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.13.3" }
cosmwasm-std = { version = "1.0.0" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.20" }

[dev-dependencies]
cosmwasm-schema = { version = "1.0.0-beta8" }
cosmwasm-schema = { version = "1.0.0" }
Loading

0 comments on commit 6d20854

Please sign in to comment.