Skip to content

Commit

Permalink
ARTIQ-8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sbourdeauducq committed Jun 6, 2024
1 parent 53abbd5 commit 9e28ee6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Release notes
=============

ARTIQ-8 (Unreleased)
--------------------
ARTIQ-8
-------

Highlights:

Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
artiqVersionMajor = 8;
artiqVersionMinor = self.sourceInfo.revCount or 0;
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";

rustManifest = pkgs.fetchurl {
Expand Down
2 changes: 1 addition & 1 deletion versioneer.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def get_rev():
"""

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():
return os.getenv("VERSIONEER_REV", default="unknown")
Expand Down

0 comments on commit 9e28ee6

Please sign in to comment.