diff --git a/CHANGELOG.md b/CHANGELOG.md index b9e85b330c0352ed084feadeecdb40745990433a..c62a161d0003a9fe2ba4e09c33482c8c6499c985 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,14 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.0] - 2021-07-22 + ### Added - Convenient off-chain testing through `cargo contract test` - [#283](https://github.com/paritytech/cargo-contract/pull/283) - Build contracts in debug mode by default, add `--release` flag - [#298](https://github.com/paritytech/cargo-contract/pull/298) +- Add `--keep-symbols` flag for better Wasm analysis capabilities - [#302](https://github.com/paritytech/cargo-contract/pull/302) ### Changed - Change default optimizations pass to focus on code size - [#305](https://github.com/paritytech/cargo-contract/pull/305) -## [0.12.1] - 2021-04-25 +## [0.12.1] - 2021-05-25 ### Added - Suggest `binaryen` installation from GitHub release on outdated version - [#274](https://github.com/paritytech/cargo-contract/pull/274) diff --git a/Cargo.lock b/Cargo.lock index 1596fe797c6e418eb093128bed1023fbea535d74..035264912761bd00a1ac29d0d4b7b1d60cebf62f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -487,7 +487,7 @@ dependencies = [ [[package]] name = "cargo-contract" -version = "0.12.1" +version = "0.13.0" dependencies = [ "anyhow", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index e5f134e3ea5ed84d669903d53242346b64ffed80..67db79c9d032face4b6ad331646ec033adf00d52 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "metadata"] [package] name = "cargo-contract" -version = "0.12.1" +version = "0.13.0" authors = ["Parity Technologies "] build = "build.rs" edition = "2018"