diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c8de912a..66932f41c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.5.0] - 2022-08-15 + +- Fix windows dylint build (#690) + +### Added +- Dry run gas limit estimation [#484](https://github.com/paritytech/cargo-contract/pull/484) + +### Changed +- Bump `ink_*` crates to `v3.3.1` [#686](https://github.com/paritytech/cargo-contract/pull/686) +- Refactor out transcode as a separate library [#597](https://github.com/paritytech/cargo-contract/pull/597) +- Sync `metadata` version with `cargo-contract` [#611](https://github.com/paritytech/cargo-contract/pull/611) +- Adapt to new subxt API [#678](https://github.com/paritytech/cargo-contract/pull/678) +- Replace log/env_logger with tracing/tracing_subscriber [#689](https://github.com/paritytech/cargo-contract/pull/689) +- Contract upload: emitting a warning instead of an error when the contract already existed is more user friendly [#644](https://github.com/paritytech/cargo-contract/pull/644) + +### Fixed +- Fix windows dylint build [#690](https://github.com/paritytech/cargo-contract/pull/690) +- Fix `instantiate_with_code` with already uploaded code [#594](https://github.com/paritytech/cargo-contract/pull/594) + + ## [1.4.0] - 2022-05-18 ### Changed diff --git a/Cargo.lock b/Cargo.lock index 3e30cbaa3..dd90974ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -464,7 +464,7 @@ dependencies = [ [[package]] name = "cargo-contract" -version = "1.4.0" +version = "1.5.0" dependencies = [ "anyhow", "assert_cmd", @@ -628,7 +628,7 @@ checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" [[package]] name = "contract-metadata" -version = "1.4.0" +version = "1.5.0" dependencies = [ "impl-serde", "pretty_assertions", diff --git a/Cargo.toml b/Cargo.toml index d4d2cbc18..4dfa9013f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "metadata", "transcode"] [package] name = "cargo-contract" -version = "1.4.0" +version = "1.5.0" authors = ["Parity Technologies "] build = "build.rs" edition = "2021" diff --git a/metadata/Cargo.toml b/metadata/Cargo.toml index 44952f35a..b4b83098b 100644 --- a/metadata/Cargo.toml +++ b/metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "contract-metadata" -version = "1.4.0" +version = "1.5.0" authors = ["Parity Technologies "] edition = "2021"