From 7bbc95ce403d77f7cd9d22497170eb703c517a38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=BCller?= Date: Thu, 12 Aug 2021 21:58:26 +0200 Subject: [PATCH] Release v0.14.0 (#327) * Add log output * Add #326 to changelog * Bump version * Fix changelog --- CHANGELOG.md | 3 +++ Cargo.lock | 2 +- Cargo.toml | 2 +- src/cmd/build.rs | 1 + 4 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c6a92beac..13c73b842 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.14.0] - 2021-08-12 + ### Added - Add option for JSON formatted output - [#324](https://github.com/paritytech/cargo-contract/pull/324) ### Changed - Use new dependency resolver for template contract - [#325](https://github.com/paritytech/cargo-contract/pull/325) +- Do not strip out panic messages in debug builds - [#326](https://github.com/paritytech/cargo-contract/pull/326) ## [0.13.1] - 2021-08-03 diff --git a/Cargo.lock b/Cargo.lock index 9900ddff7..7d2ca9627 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -487,7 +487,7 @@ dependencies = [ [[package]] name = "cargo-contract" -version = "0.13.1" +version = "0.14.0" dependencies = [ "anyhow", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index 3fc824bf4..4d8e8b6d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "metadata"] [package] name = "cargo-contract" -version = "0.13.1" +version = "0.14.0" authors = ["Parity Technologies "] build = "build.rs" edition = "2018" diff --git a/src/cmd/build.rs b/src/cmd/build.rs index ee465a792..eadd57069 100644 --- a/src/cmd/build.rs +++ b/src/cmd/build.rs @@ -471,6 +471,7 @@ fn do_optimization( if keep_debug_symbols { command.arg("-g"); } + log::info!("Invoking wasm-opt with {:?}", command); let output = command.output().map_err(|err| { anyhow::anyhow!( "Executing {} failed with {:?}",