From 7261e8a6925cd4f371f596524240c8c9861dc062 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Thu, 9 Sep 2021 12:59:14 +0200 Subject: [PATCH 1/2] Update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 960db82e..2de6cd15 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ More relevant links: * Talk to us on [Element][b2] or [Discord][c2] * [`ink!`](https://github.com/paritytech/ink) ‒ The main ink! repository with smart contract examples * [Canvas UI](https://paritytech.github.io/canvas-ui/#/upload) ‒ Frontend for contract deployment and interaction -* [Canvas Node](https://github.com/paritytech/canvas-node) ‒ Simple Substrate blockchain which includes smart contract functionality +* [Substrate Contracts Node](https://github.com/paritytech/substrate-contracts-node) ‒ Simple Substrate blockchain which includes smart contract functionality ## Installation -- GitLab From e82ffc77f65ddc82e80d8017aee3d7fe926b1545 Mon Sep 17 00:00:00 2001 From: Michael Mueller Date: Thu, 9 Sep 2021 13:01:33 +0200 Subject: [PATCH 2/2] Bump to ink! `3.0.0-rc5` --- CHANGELOG.md | 1 + templates/new/_Cargo.toml | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55dd202f..3e1861a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### 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) ## [0.14.0] - 2021-08-12 diff --git a/templates/new/_Cargo.toml b/templates/new/_Cargo.toml index cb3be390..34130363 100644 --- a/templates/new/_Cargo.toml +++ b/templates/new/_Cargo.toml @@ -6,11 +6,11 @@ edition = "2018" resolver = "2" [dependencies] -ink_primitives = { version = "3.0.0-rc4", default-features = false } -ink_metadata = { version = "3.0.0-rc4", default-features = false, features = ["derive"], optional = true } -ink_env = { version = "3.0.0-rc4", default-features = false } -ink_storage = { version = "3.0.0-rc4", default-features = false } -ink_lang = { version = "3.0.0-rc4", default-features = false } +ink_primitives = { version = "3.0.0-rc5", default-features = false } +ink_metadata = { version = "3.0.0-rc5", default-features = false, features = ["derive"], optional = true } +ink_env = { version = "3.0.0-rc5", default-features = false } +ink_storage = { version = "3.0.0-rc5", default-features = false } +ink_lang = { version = "3.0.0-rc5", default-features = false } scale = { package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"] } scale-info = { version = "0.6.0", default-features = false, features = ["derive"], optional = true } -- GitLab