> For the complete documentation index, see [llms.txt](https://services.takeshi.team/chain/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://services.takeshi.team/chain/mainnet/osmosis/upgrade.md).

# Upgrade

<figure><img src="https://github.com/takeshi-val/Logo/raw/main/osmosis.png" alt=""><figcaption></figcaption></figure>

**Chain ID**: osmosis-1 | **Latest Version Tag**: v14.0.0 | **Custom Port**: 29

{% hint style="info" %}
Since we are using Cosmovisor, it makes it very easy to prepare for upcomming upgrade. You just have to build new binaries and move it into cosmovisor upgrades directory.
{% endhint %}

## Download and build upgrade binaries

```bash
# Clone project repository
cd $HOME
rm -rf osmosis
git clone https://github.com/osmosis-labs/osmosis.git
cd osmosis
git checkout v14.0.0

# Build binaries
make build

# Prepare binaries for Cosmovisor
mkdir -p $HOME/.osmosisd/cosmovisor/upgrades/v14/bin
mv build/osmosisd $HOME/.osmosisd/cosmovisor/upgrades/v14/bin/
rm -rf build
```

*Thats it! Now when upgrade block height is reached, Cosmovisor will handle it automatically!*
