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
--- 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")