diff --git a/CHANGELOG.md b/CHANGELOG.md index 676481db5505e85ab1f61a03cf2cc8c02eebb0af..9c8de912a8eb5804ac290e797c858f9ab3490c3b 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] +## [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) - Improved documentation on how to invoke `cargo contract decode` - [#572](https://github.com/paritytech/cargo-contract/pull/572) ### Fixed +- Make constructor selector look for exact function name - [#562](https://github.com/paritytech/cargo-contract/pull/562) (thanks [@forgetso](https://github.com/forgetso)!) - Fix dirty directory issue when crate installation had been interrupted - [#571](https://github.com/paritytech/cargo-contract/pull/571) ## [1.3.0] - 2022-05-09 diff --git a/Cargo.lock b/Cargo.lock index 5d33ca202197217e01eb98439bc37da966dcfa89..d4a1b8ddbf477d85ac33637fa4cad28723c84834 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 2922ebc0139979eca007c048eea96810e8100f6e..be48176be21be9ee216ef8cc8b9d8418d5c7220f 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"