diff --git a/CHANGELOG.md b/CHANGELOG.md index aa63989c979a035d1b5daa5993aa0f94e240493c..5b74e11a249d9073fc1a457f380729788bbbbd90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.1] - 2021-02-24 + +### Fixed +- Fix linker error when building complex contracts - [#199](https://github.com/paritytech/cargo-contract/pull/199) + ## [0.9.0] - 2021-02-22 ### Added @@ -16,8 +21,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Update to scale-info 0.5 and codec 2.0 - [#164](https://github.com/paritytech/cargo-contract/pull/164) - Put build artifacts under `target/ink/` - [#122](https://github.com/paritytech/cargo-contract/pull/122) -### Removed - ### Fixed - Fix `wasm-opt` regression - [#187](https://github.com/paritytech/cargo-contract/pull/187) - Generate metadata explicitly for the contract which is build - [#174](https://github.com/paritytech/cargo-contract/pull/174) diff --git a/Cargo.lock b/Cargo.lock index 570ab8464295ea2c305761cbedc832aa73996986..13104d99c2112dd3cde844175a45442999a82519 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -480,7 +480,7 @@ checksum = "631ae5198c9be5e753e5cc215e1bd73c2b466a3565173db433f52bb9d3e66dba" [[package]] name = "cargo-contract" -version = "0.9.0" +version = "0.9.1" dependencies = [ "anyhow", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index 16dda292cc466b59090e20d740f1d5b1e3d32ee9..47bd20ee953625259b8bfc05a5fe1b0ee39988e4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "metadata"] [package] name = "cargo-contract" -version = "0.9.0" +version = "0.9.1" authors = ["Parity Technologies "] build = "build.rs" edition = "2018"