pyoxidizer: default to a meaningless release instead of hardcoding 5.8
authorRaphaël Gomès <rgomes@octobus.net>
Fri, 27 Aug 2021 14:40:09 +0200
changeset 48248 7f23a472068f
parent 48247 c62e4397eb28
child 48249 e9faae0f445c
pyoxidizer: default to a meaningless release instead of hardcoding 5.8 This way we don't advertise the wrong version, or if we do it's really obvious. To be honest, I'm not even sure that `VERSION` should be optional, but I also have never used the packaging tools so far, this is simply something I saw. Differential Revision: https://phab.mercurial-scm.org/D11360
rust/hgcli/pyoxidizer.bzl
--- a/rust/hgcli/pyoxidizer.bzl	Thu Oct 14 10:58:39 2021 -0700
+++ b/rust/hgcli/pyoxidizer.bzl	Fri Aug 27 14:40:09 2021 +0200
@@ -24,7 +24,7 @@
 
 ROOT = CWD + "/../.."
 
-VERSION = VARS.get("VERSION", "5.8")
+VERSION = VARS.get("VERSION", "0.0")
 MSI_NAME = VARS.get("MSI_NAME", "mercurial")
 EXTRA_MSI_FEATURES = VARS.get("EXTRA_MSI_FEATURES")
 SIGNING_PFX_PATH = VARS.get("SIGNING_PFX_PATH")