Releases: CosmosContracts/juno
v2.0.2-moneta
This adds:
- A bump in contract compilation cost
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.2
make build && make install
# check the version - should be v2.0.2
# junod version --long will be commit 998e1b6c6258c4cae4b44f0d74d7717e3a994eab
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.2
$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.1...v2.0.2
v2.0.1-moneta
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
- Add release trigger to docker build. by @the-frey in #108
- Add ibc proposal handler by @giansalex in #110
- Cosmos SDK 0.44.5 by @faddat in #111
Full Changelog: v2.0.0...v.2.0.1
v2.0.0-moneta
-moneta-alpha
and -moneta-beta
in a single handler.
Changes over 1.0.0:
- adds wasmd and cosmwasm
- fixes a bug with pinning contracts
- enforces a minimum validator commission
- ensures that new validators joining the set have to adhere to this
- includes a wasmvm security patch
- includes increase to cosmwasm default compile costs
- enforces a minimum validator commission
- ensures that new validators joining the set have to adhere to this
- includes a wasmvm security patch
- includes increase to cosmwasm default compile costs
v2.0.0-beta.3
Fixes a critical bug that halted the testnet. 😂
v2.0.0-beta.2
This is an upgrade for uni that completes the moneta milestone. It:
- fixes a bug with pinning contracts
- enforces a minimum validator commission
- ensures that new validators joining the set have to adhere to this
- includes a wasmvm security patch
- includes increase to cosmwasm default compile costs
This release is merely a stepping stone to a proper v2.0.0 release, which will be coined once this has been tested and signed off.
v2.0.0-beta.1
This is an upgrade for uni that completes the moneta milestone. It:
- enforces a minimum validator commission
- ensures that new validators joining the set have to adhere to this
- includes a wasmvm security patch
- includes increase to cosmwasm default compile costs
This release is merely a stepping stone to a proper v2.0.0 release, which will be coined once this has been tested and signed off.
v2.0.0-beta
This is the second upgrade that will form part of the moneta update/release. It enforces a minimum validator commission and ensures that new validators joining the set have to adhere to this.
v2.0.0-alpha.3
Fixes a critical upgrade bug.
v2.0.0-alpha.2
Catch some things that were missed with alpha.1
v2.0.0-alpha.1
Adds the CosmWasm 1.0-beta wasm module, updated for Cosmos SDK 0.44. Makefile altered to allow for better versioning as we move through -alpha
and -beta
testing.