From 7c0298b274e05f1b3134a51fbfe646fd8525d027 Mon Sep 17 00:00:00 2001 From: AlexD10S Date: Mon, 29 Sep 2025 09:38:39 +0200 Subject: [PATCH] chore: upgrade ink! version to alpha.4 for v6 --- pop-cli-for-smart-contracts/welcome/migrating-to-inkv6.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pop-cli-for-smart-contracts/welcome/migrating-to-inkv6.md b/pop-cli-for-smart-contracts/welcome/migrating-to-inkv6.md index 8517bc3..7675e46 100644 --- a/pop-cli-for-smart-contracts/welcome/migrating-to-inkv6.md +++ b/pop-cli-for-smart-contracts/welcome/migrating-to-inkv6.md @@ -20,7 +20,7 @@ Pop CLI supports ink! v6 through the `polkavm-contracts` feature flag. To install it from the experimental branch, run: ``` -cargo install --git https://github.com/r0gue-io/pop-cli.git --branch v6.0.0-alpha.3 --no-default-features --locked -F polkavm-contracts,chain,telemetry +cargo install --git https://github.com/r0gue-io/pop-cli.git --branch v6.0.0-alpha.4 --locked ``` > **⚠️ Note:** Make sure you're using `Rust 1.89` or higher, older versions will fail to compile. You can check your version with rustc `--version`. @@ -35,10 +35,10 @@ If you already have an ink! smart contract, update your dependencies as follows: ```toml [dependencies] -ink = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.3", default-features = false } +ink = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.4", default-features = false } [dev-dependencies] -ink_e2e = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.3" } +ink_e2e = { git = "https://github.com/use-ink/ink", tag = "v6.0.0-alpha.4" } ``` For a complete example, check the [ink! flipper example](https://github.com/use-ink/ink-examples/tree/v6.x/flipper).