From 291c18848a5f54b031f9d2baaae9fd067f7089f0 Mon Sep 17 00:00:00 2001 From: ascjones Date: Mon, 9 May 2022 10:03:55 +0100 Subject: [PATCH 1/2] Release v1.3.0 --- CHANGELOG.md | 10 +++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1aaf266f..2c5a32af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.3.0] - 2022-05-09 + +### Added +- Allow hex literals for unsigned integers - [#547](https://github.com/paritytech/cargo-contract/pull/547) + ### Fixed -- Fix extrinsic params for contract chains - [#523](https://github.com/paritytech/cargo-contract/pull/523) +- Display `H256` instances in events as hex encoded string - [#550](https://github.com/paritytech/cargo-contract/pull/550) +- Fix extrinsic params for contract chains - [#523](https://github.com/paritytech/cargo-contract/pull/523) +- Fix `Vec` args - [#519](https://github.com/paritytech/cargo-contract/pull/519) +- Fix `--dry-run` error deserialization and report error details - [#534](https://github.com/paritytech/cargo-contract/pull/534) ## [1.2.0] - 2022-04-13 diff --git a/Cargo.lock b/Cargo.lock index 1689e5f9..452476f8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -465,7 +465,7 @@ dependencies = [ [[package]] name = "cargo-contract" -version = "1.2.0" +version = "1.3.0" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 5267262e..b6d04cb1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "metadata"] [package] name = "cargo-contract" -version = "1.2.0" +version = "1.3.0" authors = ["Parity Technologies "] build = "build.rs" edition = "2021" -- GitLab From 0f1944cf1c7c64c55ee70d318de60dc76de7a38e Mon Sep 17 00:00:00 2001 From: ascjones Date: Mon, 9 May 2022 15:11:08 +0100 Subject: [PATCH 2/2] Update from yanked ed25519 package --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5061936d..f654c6c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -913,9 +913,9 @@ checksum = "21e50f3adc76d6a43f5ed73b698a87d0760ca74617f60f7c3b879003536fdd28" [[package]] name = "ed25519" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eed12bbf7b5312f8da1c2722bc06d8c6b12c2d86a7fb35a194c7f3e6fc2bbe39" +checksum = "d916019f70ae3a1faa1195685e290287f39207d38e6dfee727197cffcc002214" dependencies = [ "signature", ] -- GitLab