Skip to content

v2.0.1-moneta

Pre-release
Pre-release
Compare
Choose a tag to compare
@the-frey the-frey released this 05 Dec 17:03
· 1457 commits to main since this release
741328f

This adds:

  • version bump to 44.5 SDK
  • IBC proposal handler

Astarte testnet validators

We are going to test whether or not this breaks consensus using the testnet. It should not require an upgrade handler, meaning you can stop your node and upgrade to the new binary at any time. If the upgrade fails, then please report this in the #validators-testnet channel on discord.

# get the new version
git checkout main && git pull
git checkout v2.0.1
make build && make install

# check the version - should be v2.0.1
# junod version --long will be commit 741328f717f4191bd1330974927582ab82f7faca
junod version

# IMPORTANT: stop your chain and replace the binary - stop it now and replace
# if you are using cosmovisor you then need to copy this new binary OVER the moneta binary
# and then check it is symlinked to current
cp /home/<your-user>/go/bin/junod $DAEMON_HOME/cosmovisor/upgrades/moneta/bin

# check symlink
ls -la $DAEMON_HOME/cosmovisor

# should return something like:
# lrwxrwxrwx 1 <user> <user>  49 Dec  5 13:58 current -> /home/<user>/.juno/cosmovisor/upgrades/moneta
# drwxrwxr-x 3 <user> <user>  17 Dec  2 23:51 genesis
# drwxrwxr-x 3 <user> <user>  20 Dec  3 14:14 upgrades

# find out what version you are about to run - should be v2.0.1
$DAEMON_HOME/cosmovisor/upgrades/moneta/bin/junod version
$DAEMON_HOME/cosmovisor/current/bin/junod version

# you can now restart your chain

What's Changed

Full Changelog: v2.0.0...v.2.0.1