Skip to content

Commit

Permalink
remove beta from version string
Browse files Browse the repository at this point in the history
  • Loading branch information
sbourdeauducq committed Jul 8, 2022
1 parent 2e05a1b commit 59dfb9e
Showing 1 changed file with 1 addition and 1 deletion.
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 = 7;
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

0 comments on commit 59dfb9e

Please sign in to comment.