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

# Upgrade

> Upgrade the Dymension Hub full node by building the target tag and restarting.

<Note>
  Confirm the **latest mainnet tag** from the official repository or docs before upgrading.
</Note>

## Build the target version

```bash theme={null}
cd ~/dymension || git clone https://github.com/dymensionxyz/dymension.git ~/dymension && cd ~/dymension
git fetch --tags
git checkout v3.2.0   # replace with the announced version
make install          # installs 'dymd' to $GOBIN
dymd version --long
```

## Restart

```bash theme={null}
# If using systemd
sudo systemctl restart dymd
journalctl -u dymd -f -o cat

# Or run in foreground
dymd start
```

## Verify

```bash theme={null}
curl -s localhost:26657/status | jq '.result.sync_info'
```
