From d9c1c0925ca74536bfaeaeb69042886e33c4e5a6 Mon Sep 17 00:00:00 2001 From: "Commentator2.0" Date: Fri, 3 Oct 2025 21:47:04 +0200 Subject: [PATCH] unify version string between lix and nixos-module Currenlty `lix` and `nixos-module` have slightly diverging version numbering. This commit fixes the lix side of things, in accordance to the format proposed in https://git.lix.systems/lix-project/lix/issues/585#issuecomment-7336 which allows for better use of `builtins.compareVersions` fixes #585 Change-Id: I2072b701f9fadf780e7aab67b62fbcd2ec5df76d --- flake.nix | 2 +- version.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index a675a5f08..192e164b2 100644 --- a/flake.nix +++ b/flake.nix @@ -88,7 +88,7 @@ else "pre${ builtins.substring 0 8 (self.lastModifiedDate or self.lastModified or "19700101") - }_${self.shortRev or "dirty"}"; + }-dev_${self.shortRev or "dirty"}"; linux32BitSystems = [ "i686-linux" ]; linux64BitSystems = [ diff --git a/version.json b/version.json index 4c6083b39..690b9ed4f 100644 --- a/version.json +++ b/version.json @@ -1,5 +1,5 @@ { - "version": "2.94.0-dev", + "version": "2.94.0", "official_release": false, "release_name": "TBA" }