Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pop-cli-for-smart-contracts/welcome/migrating-to-inkv6.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
Expand All @@ -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).
Expand Down