From 5dd7471816de0c05abf237e84c72b794601d8f55 Mon Sep 17 00:00:00 2001 From: Alexander Gryaznov Date: Wed, 13 Apr 2022 14:21:22 +0300 Subject: [PATCH 1/2] Release 1.2.0 --- CHANGELOG.md | 5 +++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b276bdd..ab5389a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.0] - 2022-04-13 + +### Added +- `decode` command for event, message and constructor data decoding - [#481](https://github.com/paritytech/cargo-contract/pull/481) + ## [1.1.1] - 2022-04-05 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 52c6b229..ce1404cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -465,7 +465,7 @@ dependencies = [ [[package]] name = "cargo-contract" -version = "1.1.1" +version = "1.2.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 4bf2e679..cdf3b9fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "metadata"] [package] name = "cargo-contract" -version = "1.1.1" +version = "1.2.0" authors = ["Parity Technologies "] build = "build.rs" edition = "2021" -- GitLab From 5f45384288e9dc4fff6e69728f9110b76246fa79 Mon Sep 17 00:00:00 2001 From: Alexander Gryaznov Date: Wed, 13 Apr 2022 14:35:52 +0300 Subject: [PATCH 2/2] added missed fix to chagelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab5389a1..ad0243b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - `decode` command for event, message and constructor data decoding - [#481](https://github.com/paritytech/cargo-contract/pull/481) +### Fixed +- Fix usage of `check-only` and remove need for `FromStr` impl - [#499](https://github.com/paritytech/cargo-contract/pull/499) + ## [1.1.1] - 2022-04-05 ### Fixed -- GitLab