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.

Download and build upgrade binaries

# Clone project repository
cd $HOME
rm -rf story
git clone https://github.com/piplabs/story.git
cd story
git checkout v0.10.0

# Build binaries
go build -o story ./client

# Prepare binaries for Cosmovisor
mkdir -p $HOME/.story/story/cosmovisor/upgrades/v0.10.0/bin
mv story $HOME/.story/story/cosmovisor/upgrades/v0.10.0/bin/

# Add upgrade information
echo '{"name":"v0.10.0","time":"0001-01-01T00:00:00Z","height":626575}' > $HOME/.story/story/cosmovisor/upgrades/v0.10.0/upgrade-info.json

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