From 256f639f1a8a359d4e9b5a656f7a921a4a67a2d4 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Wed, 18 May 2022 20:04:20 +0200 Subject: [PATCH 1/2] Bump version to `1.4.0` --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5d33ca20..d4a1b8dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -465,7 +465,7 @@ dependencies = [ [[package]] name = "cargo-contract" -version = "1.3.0" +version = "1.4.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 2922ebc0..be48176b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "metadata"] [package] name = "cargo-contract" -version = "1.3.0" +version = "1.4.0" authors = ["Parity Technologies "] build = "build.rs" edition = "2021" -- GitLab From 20416dcd2e58b9f2b09146a02ddfafb35a82c511 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Wed, 18 May 2022 20:04:49 +0200 Subject: [PATCH 2/2] Update changelog --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77622ff6..e953952b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.4.0] - 2022-05-18 + ### Changed -- Updated `cargo contract new` template dependencies to ink! `3` - [#569](https://github.com/paritytech/cargo-contract/pull/569) +- Updated `cargo contract new` template dependencies to ink! `version = "3"` - [#569](https://github.com/paritytech/cargo-contract/pull/569) + +### Fixed +- Make constructor selector look for exact function name - [#562](https://github.com/paritytech/cargo-contract/pull/562) (thanks [@forgetso](https://github.com/forgetso)!) ## [1.3.0] - 2022-05-09 -- GitLab