> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cadenzalabs.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Updating

> Keep the CLI current and check your version.

## Check your version

```bash theme={null}
cadenza --version
# cadenza 0.2.0
```

Running `--version` also performs a quiet, non-blocking check against GitHub
Releases. If a newer version exists, it prints the one-line update command. The
check never slows you down and silently does nothing if you're offline.

## Update

Re-run the install script. It always fetches the latest release:

<Tabs>
  <Tab title="macOS / Linux">
    ```bash theme={null}
    curl -fsSL https://raw.githubusercontent.com/aparekh02/cadenza-cli/main/install.sh | bash
    ```
  </Tab>

  <Tab title="Windows (PowerShell)">
    ```powershell theme={null}
    irm https://raw.githubusercontent.com/aparekh02/cadenza-cli/main/install.ps1 | iex
    ```
  </Tab>

  <Tab title="From source">
    ```bash theme={null}
    cd cadenza-cli && git pull && pip install -e .
    ```
  </Tab>
</Tabs>

The new binary overwrites the old one in place. Your session
(`~/.cadenza/config.json`) and projects are untouched.
