We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fea5aa6 commit 56c26abCopy full SHA for 56c26ab
mk/main.mk
@@ -15,6 +15,9 @@
15
# The version number
16
CFG_RELEASE_NUM=0.13.0
17
18
+# An optional number to put after the label, e.g. '2' -> '-beta2'
19
+CFG_BETA_CYCLE=1
20
+
21
CFG_FILENAME_EXTRA=4e7c5e5c
22
23
ifeq ($(CFG_RELEASE_CHANNEL),stable)
@@ -24,7 +27,7 @@ CFG_RELEASE=$(CFG_RELEASE_NUM)
24
27
CFG_PACKAGE_VERS=$(CFG_RELEASE_NUM)
25
28
endif
26
29
ifeq ($(CFG_RELEASE_CHANNEL),beta)
-CFG_RELEASE=$(CFG_RELEASE_NUM)-beta
30
+CFG_RELEASE=$(CFG_RELEASE_NUM)-beta$(CFG_BETA_CYCLE)
31
# When building beta/nightly distributables just reuse the same "beta"
32
# name so when we upload we'll always override the previous
33
# nighly. This doesn't actually impact the version reported by rustc -
0 commit comments