Skip to content

Commit

Permalink
Merge pull request #58 from onflow/jribbink/c1-install
Browse files Browse the repository at this point in the history
Update Cadence 1.0 CLI installation doc
  • Loading branch information
turbolent authored Mar 7, 2024
2 parents 2052b5c + a3dda88 commit 646649b
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions docs/cadence_migration_guide/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,19 @@ To ensure your contracts are fully operational with Cadence 1.0, follow these es
       Linux/macOS

```bash

sudo sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" -- v1.12.0-cadence-v1.0.0-M4-2

sudo sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/feature/stable-cadence/install.sh)"
```

        Windows (in PowerShell):

```powershell
iex "& { $(irm 'https://raw.githubusercontent.com/onflow/flow-cli/feature/stable-cadence/install.ps1') }"
```

iex "& { $(irm 'https://raw.githubusercontent.com/onflow/flow-cli/master/install.ps1') } v1.12.0-cadence-v1.0.0-M4-2"
The Cadence 1.0 CLI will now be installed on your machine and can be accessed via the `flow-c1` command. To verify the installation, run:

```bash
flow-c1 version
```

4. **Stage**: A new **_Staging process_** will be released in the coming weeks that checks if your updated code is compatible with Cadence 1.0. Complete this [form](https://docs.google.com/forms/d/e/1FAIpQLSfprZJLPSEAS6H7_oL0j6bzetDzkHPmDZHYAGgqAAOAdLDKqw/viewform) to stay informed about updates and receive recommendations tailored to your code.
Expand Down

0 comments on commit 646649b

Please sign in to comment.