# HG changeset patch # User Raphaël Gomès # Date 1630068009 -7200 # Node ID 7f23a472068f3248a13870f50ad5234d5ad7b126 # Parent c62e4397eb289638160cf5d898cc12f6576d15ac 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 diff -r c62e4397eb28 -r 7f23a472068f 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")