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

# Version and updates

> Learn how to check and update your Cobo CLI version for the latest features and improvements.

<Tip>
  Try [Cobo WaaS Skill](/v2/guides/overview/cobo-waas-skill) in your AI coding assistant (Claude Code, Cursor, etc.). Describe your needs in natural language to auto-generate production-ready SDK code and debug faster 🚀
</Tip>

This guide explains how to check and manage your Cobo CLI version. You'll learn how to verify which version you're currently running and how to update to the latest release to access new features and improvements.

## Check current version

To display the current version of Cobo CLI, use the following command:

```shell theme={null}
cobo version
```

Example output:

```shell theme={null}
Cobo CLI version: 0.1.0
```

## Update Cobo CLI

To ensure you have access to the latest features and bug fixes, it's important to keep your Cobo CLI up to date. The update process depends on how you initially installed the tool.

If you installed Cobo CLI using pip, you can update it with the following command:

```shell theme={null}
pip install --upgrade cobo-cli
```

If you installed Cobo CLI using Homebrew on macOS, you can update it with these commands:

```shell theme={null}
brew upgrade cobo-cli
```

After updating, verify the new version:

```shell theme={null}
cobo version
```
