We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 773c525 commit 77ccd46Copy full SHA for 77ccd46
Makefile
@@ -15,12 +15,12 @@
15
# Bump these on release - and please check ISO_VERSION for correctness.
16
VERSION_MAJOR ?= 1
17
VERSION_MINOR ?= 5
18
-VERSION_BUILD ?= 0
+VERSION_BUILD ?= 1
19
RAW_VERSION=$(VERSION_MAJOR).$(VERSION_MINOR).${VERSION_BUILD}
20
VERSION ?= v$(RAW_VERSION)
21
22
# Default to .0 for higher cache hit rates, as build increments typically don't require new ISO versions
23
-ISO_VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).0-beta.0
+ISO_VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
24
# Dashes are valid in semver, but not Linux packaging. Use ~ to delimit alpha/beta
25
DEB_VERSION ?= $(subst -,~,$(RAW_VERSION))
26
RPM_VERSION ?= $(DEB_VERSION)
0 commit comments