Skip to content

Commit

Permalink
Switch to 22.05 as current development release
Browse files Browse the repository at this point in the history
rycee committed Nov 25, 2021
1 parent 2889ee2 commit 579f2e8
Showing 7 changed files with 27 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
21.11
22.05
2 changes: 2 additions & 0 deletions docs/release-notes/release-notes.adoc
Original file line number Diff line number Diff line change
@@ -6,6 +6,8 @@ This section lists the release notes for stable versions of Home Manager and the

:leveloffset: 1

include::rl-2205.adoc[]

include::rl-2111.adoc[]

include::rl-2105.adoc[]
19 changes: 19 additions & 0 deletions docs/release-notes/rl-2205.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[[sec-release-22.05]]
== Release 22.05

This is the current unstable branch and the information in this section is therefore not final.

[[sec-release-22.05-highlights]]
=== Highlights

This release has the following notable changes:

* Nothing has happened.

[[sec-release-22.05-state-version-changes]]
=== State Version Changes

The state version in this release includes the changes below.
These changes are only active if the `home.stateVersion` option is set to "22.05" or later.

* Nothing has happened.
4 changes: 2 additions & 2 deletions docs/usage.adoc
Original file line number Diff line number Diff line change
@@ -51,7 +51,7 @@ A fresh install of Home Manager will generate a minimal `~/.config/nixpkgs/home.
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "21.11";
home.stateVersion = "22.05";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
@@ -91,7 +91,7 @@ To satisfy the above setup we should elaborate the `home.nix` file as follows:
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "21.11";
home.stateVersion = "22.05";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
2 changes: 1 addition & 1 deletion home-manager/home-manager
Original file line number Diff line number Diff line change
@@ -634,7 +634,7 @@ while [[ $# -gt 0 ]]; do
export VERBOSE=1
;;
--version)
echo 21.11
echo 22.05
exit 0
;;
*)
2 changes: 1 addition & 1 deletion home-manager/install.nix
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@ runCommand "home-manager-install" {
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "21.11";
home.stateVersion = "22.05";
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
1 change: 1 addition & 0 deletions modules/misc/version.nix
Original file line number Diff line number Diff line change
@@ -14,6 +14,7 @@ with lib;
"21.03"
"21.05"
"21.11"
"22.05"
];
default = "18.09";
description = ''

0 comments on commit 579f2e8

Please sign in to comment.