diff --git a/release.nix b/release.nix index 65012fa..f80b155 100644 --- a/release.nix +++ b/release.nix @@ -45,7 +45,7 @@ in let in assert (versionNixpkgs == versionCcpkgs); versionCcpkgs; - versionSeparator = if stableBranch then "." else "beta"; + versionSeparator = if stableBranch then "." else "pre"; mkVersion = base: git: rec { count = toString (git.revCount - base); @@ -53,8 +53,8 @@ in let suffix = "${versionSeparator}${count}.${commit}"; }; - nixpkgsVersion = mkVersion 114283 nixpkgsGit; - ccpkgsVersion = mkVersion 0 ccpkgsGit; + nixpkgsVersion = mkVersion 0 nixpkgsGit; + ccpkgsVersion = mkVersion 0 ccpkgsGit; versionSuffix = "${versionSeparator}${ccpkgsVersion.count}.${nixpkgsVersion.count}.${ccpkgsVersion.commit}.${nixpkgsVersion.commit}";