changeset 48248:7f23a472068f

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
author Raphaël Gomès <rgomes@octobus.net>
date Fri, 27 Aug 2021 14:40:09 +0200
parents c62e4397eb28
children e9faae0f445c
files rust/hgcli/pyoxidizer.bzl
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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")