From 4406502f83f1136d0d2f9ffb32d266258bee9121 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Mon, 18 Oct 2021 17:54:44 +0200 Subject: [PATCH 1/6] Update changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e1861a8..069a5c07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed +- Update to `scale-info` 1.0 and support new metadata versioning - [#342](https://github.com/paritytech/cargo-contract/pull/342) + ### Changed - Update `cargo contract new` template dependencies to ink! `rc4` - [#332](https://github.com/paritytech/cargo-contract/pull/332) - Update `cargo contract new` template dependencies to ink! `rc5` - [#335](https://github.com/paritytech/cargo-contract/pull/335) -- GitLab From 6718f7dab5a071ab0bd319d1dda49c0bd31c1725 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Mon, 18 Oct 2021 17:54:52 +0200 Subject: [PATCH 2/6] Bump version for `cargo-contract` --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6e57eec2..7ccd5ab7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -487,7 +487,7 @@ dependencies = [ [[package]] name = "cargo-contract" -version = "0.14.0" +version = "0.15.0" dependencies = [ "anyhow", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index 05e680c7..bf929c59 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "metadata"] [package] name = "cargo-contract" -version = "0.14.0" +version = "0.15.0" authors = ["Parity Technologies "] build = "build.rs" edition = "2018" -- GitLab From 0330fab1019d4141757073fe6d26fcf16e764dcd Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Mon, 18 Oct 2021 17:55:51 +0200 Subject: [PATCH 3/6] Bump version for `contract-metadata` --- Cargo.lock | 2 +- Cargo.toml | 2 +- metadata/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7ccd5ab7..666b4f4c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -638,7 +638,7 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" [[package]] name = "contract-metadata" -version = "0.3.0" +version = "0.3.1" dependencies = [ "pretty_assertions", "semver", diff --git a/Cargo.toml b/Cargo.toml index bf929c59..6a4d8513 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ colored = "2.0.0" toml = "0.5.8" rustc_version = "0.4.0" blake2 = "0.9.2" -contract-metadata = { version = "0.3.0", path = "./metadata" } +contract-metadata = { version = "0.3.1", path = "./metadata" } semver = { version = "1.0.4", features = ["serde"] } serde = { version = "1.0.130", default-features = false, features = ["derive"] } serde_json = "1.0.68" diff --git a/metadata/Cargo.toml b/metadata/Cargo.toml index 4fa06dcd..4822acf7 100644 --- a/metadata/Cargo.toml +++ b/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contract-metadata" -version = "0.3.0" +version = "0.3.1" authors = ["Parity Technologies "] edition = "2018" -- GitLab From 7725d976f9910a245ffbccdba86bc0219bf70824 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Mon, 18 Oct 2021 19:37:22 +0200 Subject: [PATCH 4/6] Bump version for `contract-metadata` --- Cargo.lock | 2 +- Cargo.toml | 2 +- metadata/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 666b4f4c..5424450e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -638,7 +638,7 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" [[package]] name = "contract-metadata" -version = "0.3.1" +version = "0.4.0" dependencies = [ "pretty_assertions", "semver", diff --git a/Cargo.toml b/Cargo.toml index 6a4d8513..dd365a5c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ colored = "2.0.0" toml = "0.5.8" rustc_version = "0.4.0" blake2 = "0.9.2" -contract-metadata = { version = "0.3.1", path = "./metadata" } +contract-metadata = { version = "0.4.0", path = "./metadata" } semver = { version = "1.0.4", features = ["serde"] } serde = { version = "1.0.130", default-features = false, features = ["derive"] } serde_json = "1.0.68" diff --git a/metadata/Cargo.toml b/metadata/Cargo.toml index 4822acf7..18614e65 100644 --- a/metadata/Cargo.toml +++ b/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contract-metadata" -version = "0.3.1" +version = "0.4.0" authors = ["Parity Technologies "] edition = "2018" -- GitLab From 43e56194bd40e5ffb417def79a281f5f5997210b Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Mon, 18 Oct 2021 19:39:02 +0200 Subject: [PATCH 5/6] Update changelog --- CHANGELOG.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 069a5c07..fc16eaef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,14 +4,11 @@ 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). -## [Unreleased] +## [0.15.0] - 2021-10-18 ### Changed - Update to `scale-info` 1.0 and support new metadata versioning - [#342](https://github.com/paritytech/cargo-contract/pull/342) - -### Changed -- Update `cargo contract new` template dependencies to ink! `rc4` - [#332](https://github.com/paritytech/cargo-contract/pull/332) -- Update `cargo contract new` template dependencies to ink! `rc5` - [#335](https://github.com/paritytech/cargo-contract/pull/335) +- Update `cargo contract new` template dependencies to ink! `rc6` - [#342](https://github.com/paritytech/cargo-contract/pull/342) ## [0.14.0] - 2021-08-12 -- GitLab From 19874d7e756558c0b862113d8b4375a4a6a8d2cc Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Mon, 18 Oct 2021 19:39:38 +0200 Subject: [PATCH 6/6] Update changelog --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc16eaef..439dfb4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ 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). +## [Unreleased] + ## [0.15.0] - 2021-10-18 ### Changed -- GitLab