> For the complete documentation index, see [llms.txt](https://service.block-pro.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://service.block-pro.net/testnet/story/upgrade.md).

# Upgrade

## Update instruction on block [1349000](https://odyssey.storyscan.xyz/block/countdown/1349000) <a href="#download-and-build-upgrade-binaries" id="download-and-build-upgrade-binaries"></a>

```
#Update Story
cd $HOME && rm -r story
git clone https://github.com/piplabs/story
cd $HOME/story
git checkout v0.14.0
go build -o story ./client
sudo mv $HOME/story/story $(which story)

#Update Geth
sudo systemctl stop story-geth
rm geth-linux-amd64
wget https://github.com/piplabs/story-geth/releases/download/v0.11.0/geth-linux-amd64
chmod +x geth-linux-amd64
mv $HOME/geth-linux-amd64 $HOME/go/bin/story-geth
source $HOME/.bash_profile
```

{% hint style="info" %}
Check the versions of story and geth:
{% endhint %}

```
story version

Result:
#Version: v0.14.0
#Git Commit: 

geth version
#Version: v0.11.0
#Git Commit: 
```

Restart the node

```
sudo systemctl restart story-geth && journalctl -fu story-geth -o cat
sudo systemctl restart story && journalctl -fu story -ocat
```
