Skip to content

Commit

Permalink
22.11 beta release
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt committed Nov 21, 2022
1 parent 550e897 commit bb02967
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nixos/modules/misc/version.nix
Expand Up @@ -114,7 +114,7 @@ in
defaultChannel = mkOption {
internal = true;
type = types.str;
default = "https://nixos.org/channels/nixos-unstable";
default = "https://nixos.org/channels/nixos-22.11";
description = lib.mdDoc "Default NixOS channel to which the root user is subscribed.";
};

Expand Down
2 changes: 1 addition & 1 deletion nixos/release.nix
Expand Up @@ -12,7 +12,7 @@ let

version = fileContents ../.version;
versionSuffix =
(if stableBranch then "." else "pre") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}";
(if stableBranch then "." else "beta") + "${toString nixpkgs.revCount - 428633}.${nixpkgs.shortRev}";

# Run the tests for each platform. You can run a test by doing
# e.g. ‘nix-build release.nix -A tests.login.x86_64-linux’,
Expand Down

4 comments on commit bb02967

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mweinelt, you pushed a commit directly to master/release branch
instead of going through a Pull Request.

That's highly discouraged beyond the few exceptions listed
on #118661

@roberth

This comment was marked as outdated.

@mweinelt

This comment was marked as resolved.

@roberth

This comment was marked as resolved.

Please sign in to comment.