forked from M-Labs/artiq
1
0
Fork 0

ARTIQ-8 release

This commit is contained in:
Sébastien Bourdeauducq 2024-06-06 13:51:40 +08:00
parent 53abbd569c
commit 9e28ee63a6
3 changed files with 4 additions and 4 deletions

View File

@ -3,8 +3,8 @@
Release notes Release notes
============= =============
ARTIQ-8 (Unreleased) ARTIQ-8
-------------------- -------
Highlights: Highlights:

View File

@ -21,7 +21,7 @@
artiqVersionMajor = 8; artiqVersionMajor = 8;
artiqVersionMinor = self.sourceInfo.revCount or 0; artiqVersionMinor = self.sourceInfo.revCount or 0;
artiqVersionId = self.sourceInfo.shortRev or "unknown"; artiqVersionId = self.sourceInfo.shortRev or "unknown";
artiqVersion = (builtins.toString artiqVersionMajor) + "." + (builtins.toString artiqVersionMinor) + "+" + artiqVersionId + ".beta"; artiqVersion = (builtins.toString artiqVersionMajor) + "." + (builtins.toString artiqVersionMinor) + "+" + artiqVersionId;
artiqRev = self.sourceInfo.rev or "unknown"; artiqRev = self.sourceInfo.rev or "unknown";
rustManifest = pkgs.fetchurl { rustManifest = pkgs.fetchurl {

View File

@ -11,7 +11,7 @@ def get_rev():
""" """
def get_version(): def get_version():
return os.getenv("VERSIONEER_OVERRIDE", default="8.0+unknown.beta") return os.getenv("VERSIONEER_OVERRIDE", default="8.0+unknown")
def get_rev(): def get_rev():
return os.getenv("VERSIONEER_REV", default="unknown") return os.getenv("VERSIONEER_REV", default="unknown")