From 888a75e68f585e0706a1f5b80389fe2e55ed5a34 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Wed, 21 Apr 2021 16:57:44 +0200 Subject: [PATCH 1/3] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52818626..90c43069 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.12.0] - 2021-04-21 + ### Fixed - Fixed `ERROR: The workspace root package should be a workspace member` when building a contract under Windows - [#261](https://github.com/paritytech/cargo-contract/pull/261) -- GitLab From 7b19da56d9cdc016357516c21e016934eb5415d7 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Wed, 21 Apr 2021 16:57:58 +0200 Subject: [PATCH 2/3] Bump version --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index eaf538e3..bd3d5c46 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -474,7 +474,7 @@ dependencies = [ [[package]] name = "cargo-contract" -version = "0.11.1" +version = "0.12.0" dependencies = [ "anyhow", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index 9d6df473..aa7154bf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "metadata"] [package] name = "cargo-contract" -version = "0.11.1" +version = "0.12.0" authors = ["Parity Technologies "] build = "build.rs" edition = "2018" -- GitLab From c503a8091172254a61882c3e63b2a0101e0cf0ca Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Wed, 21 Apr 2021 17:02:33 +0200 Subject: [PATCH 3/3] Add #260 to changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90c43069..dd5a6bfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed - Remove support for `--binaryen-as-dependency` - [#251](https://github.com/paritytech/cargo-contract/pull/251) - Remove support for the deprecated `cargo contract generate-metadata` command - [#265](https://github.com/paritytech/cargo-contract/pull/265) +- Remove pinned `funty` dependency from "new project" template - [#260](https://github.com/paritytech/cargo-contract/pull/260) ## [0.11.1] - 2021-04-06 -- GitLab