From d9ad9b212cdd099f0f2e3acb1700b7c5bf66188e Mon Sep 17 00:00:00 2001 From: pasqu4le Date: Wed, 22 Jun 2022 12:16:41 +0200 Subject: [PATCH 1/2] [#484] Improve the update message about liquidity toggle vote Problem: On updating (or installing) tezos-baking's latest version a message is printed about the liquidity toggle vote option that is mandatory since jakarta, but this does not tell the user what needs to be done nor how. Solution: Improve the update message by making it stand out more and adding info about the default value and using tezos-setup-wizard to change this option. --- docker/package/model.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/docker/package/model.py b/docker/package/model.py index c260414ad..31929560e 100644 --- a/docker/package/model.py +++ b/docker/package/model.py @@ -578,9 +578,15 @@ def __init__( custom_unit.instances = [] self.systemd_units.append(custom_unit) # TODO: we will likely need to remove this once toggle vote isn't new anymore - self.postinst_steps = """echo "Please note that the liquidity baking toggle vote option" -echo "is now mandatory when baking. You can read more about it here:" -echo "https://tezos.gitlab.io/jakarta/liquidity_baking.html#toggle-vote" + self.postinst_steps = """echo "" +echo "********************************************************************************" +echo "** Please note that the liquidity baking toggle vote option" +echo "** is now mandatory when baking. It has been automatically set to \"pass\"." +echo "** Re-run tezos-setup-wizard if you'd like to change your vote." +echo "** You can read more about it here:" +echo "** https://tezos.gitlab.io/jakarta/liquidity_baking.html#toggle-vote" +echo "********************************************************************************" +echo "" """ self.postrm_steps = "" From 553d39e242351a529a3937d41fe6b58f3a856057 Mon Sep 17 00:00:00 2001 From: pasqu4le Date: Wed, 22 Jun 2022 12:28:05 +0200 Subject: [PATCH 2/2] [#484] Bump release number for new tezos-baking package Problem: we've updated the tezos-baking package and would like to release the changes in a new version, for which we need to bump the release number. Solution: bumped the release number and updated the letter version of tezos-baking. --- docker/package/model.py | 2 +- meta.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/package/model.py b/docker/package/model.py index 31929560e..79f88477c 100644 --- a/docker/package/model.py +++ b/docker/package/model.py @@ -494,7 +494,7 @@ class TezosBakingServicesPackage(AbstractPackage): # native releases, so we append an extra letter to the version of # the package. # This should be reset to "" whenever the native version is bumped. - letter_version = "a" + letter_version = "b" buildfile = "setup.py" diff --git a/meta.json b/meta.json index 17d4a094c..99bbaf3b8 100644 --- a/meta.json +++ b/meta.json @@ -1,4 +1,4 @@ { - "release": "2", + "release": "3", "maintainer": "Serokell " }