diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b74e11a249d9073fc1a457f380729788bbbbd90..6fd60971680f50f2aaf9d4fd63231ea172b4ccd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.0] - 2021-03-02 + +### Fixed +- no periods in new contract names - [#192](https://github.com/paritytech/cargo-contract/pull/192) + +### Changed +- Update `cargo contract new` template dependencies for `ink!` `rc3` - [#204](https://github.com/paritytech/cargo-contract/pull/204) + ## [0.9.1] - 2021-02-24 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 17c17820b6d978ada96d1e53816a854b3433f081..945c9d7fd5ec0007d1c402776958bc33ec827417 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -480,7 +480,7 @@ checksum = "631ae5198c9be5e753e5cc215e1bd73c2b466a3565173db433f52bb9d3e66dba" [[package]] name = "cargo-contract" -version = "0.9.1" +version = "0.10.0" dependencies = [ "anyhow", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index 439a98753dce53462908971449256acb8e80fa11..5b83e1d7e36f2a4178642fbbbebf18f78b7c170e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = [".", "metadata"] [package] name = "cargo-contract" -version = "0.9.1" +version = "0.10.0" authors = ["Parity Technologies "] build = "build.rs" edition = "2018"