diff --git a/CHANGELOG.md b/CHANGELOG.md index 6341a0e68..6e57eac57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0.1] + +### Fixed +- Return correct contract id for `instantiate` command with subcontracts ‒ [#777](https://github.com/paritytech/cargo-contract/pull/777) +- Bump template to ink! 4.0 ‒ [#971](https://github.com/paritytech/cargo-contract/pull/971) + ## [2.0.0] Major release compatible with `ink! 4.0.0`. All the changes in aggregate since `1.5`: diff --git a/Cargo.lock b/Cargo.lock index b33767de4..a5bd69598 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -468,9 +468,9 @@ dependencies = [ [[package]] name = "bounded-collections" -version = "0.1.4" +version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de2aff4807e40f478132150d80b031f2461d88f061851afcab537d7600c24120" +checksum = "a071c348a5ef6da1d3a87166b408170b46002382b1dda83992b5c2208cefb370" dependencies = [ "log", "parity-scale-codec", @@ -561,7 +561,7 @@ dependencies = [ [[package]] name = "cargo-contract" -version = "2.0.0" +version = "2.0.1" dependencies = [ "anyhow", "assert_cmd", @@ -721,7 +721,7 @@ dependencies = [ [[package]] name = "contract-build" -version = "2.0.0" +version = "2.0.1" dependencies = [ "anyhow", "blake2", @@ -752,7 +752,7 @@ dependencies = [ [[package]] name = "contract-metadata" -version = "2.0.0" +version = "2.0.1" dependencies = [ "anyhow", "impl-serde", @@ -765,7 +765,7 @@ dependencies = [ [[package]] name = "contract-transcode" -version = "2.0.0" +version = "2.0.1" dependencies = [ "anyhow", "assert_matches", diff --git a/crates/build/Cargo.toml b/crates/build/Cargo.toml index 572618899..d82090830 100644 --- a/crates/build/Cargo.toml +++ b/crates/build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contract-build" -version = "2.0.0" +version = "2.0.1" authors = ["Parity Technologies "] edition = "2021" @@ -36,7 +36,7 @@ wasm-opt = "0.111.0" which = "4.4.0" zip = { version = "0.6.4", default-features = false } -contract-metadata = { version = "2.0.0", path = "../metadata" } +contract-metadata = { version = "2.0.1", path = "../metadata" } [build-dependencies] anyhow = "1.0.69" diff --git a/crates/cargo-contract/Cargo.toml b/crates/cargo-contract/Cargo.toml index 92a3a9e20..aed75096b 100644 --- a/crates/cargo-contract/Cargo.toml +++ b/crates/cargo-contract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-contract" -version = "2.0.0" +version = "2.0.1" authors = ["Parity Technologies "] build = "build.rs" edition = "2021" @@ -18,9 +18,9 @@ include = [ ] [dependencies] -contract-build = { version = "2.0.0", path = "../build" } -contract-metadata = { version = "2.0.0", path = "../metadata" } -contract-transcode = { version = "2.0.0", path = "../transcode" } +contract-build = { version = "2.0.1", path = "../build" } +contract-metadata = { version = "2.0.1", path = "../metadata" } +contract-transcode = { version = "2.0.1", path = "../transcode" } anyhow = "1.0.69" clap = { version = "4.1.6", features = ["derive", "env"] } diff --git a/crates/metadata/Cargo.toml b/crates/metadata/Cargo.toml index b60a51e81..625d9fd57 100644 --- a/crates/metadata/Cargo.toml +++ b/crates/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contract-metadata" -version = "2.0.0" +version = "2.0.1" authors = ["Parity Technologies "] edition = "2021" diff --git a/crates/transcode/Cargo.toml b/crates/transcode/Cargo.toml index 916ac20da..c88fc0c0e 100644 --- a/crates/transcode/Cargo.toml +++ b/crates/transcode/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contract-transcode" -version = "2.0.0" +version = "2.0.1" authors = ["Parity Technologies "] edition = "2021" @@ -18,7 +18,7 @@ path = "src/lib.rs" [dependencies] anyhow = "1.0.69" -contract-metadata = { version = "2.0.0", path = "../metadata" } +contract-metadata = { version = "2.0.1", path = "../metadata" } escape8259 = "0.5.2" hex = "0.4.3" indexmap = "1.9.2"