mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 15:14:26 +00:00
docs: set current version to 21.11
This commit is contained in:
parent
5c1415d67f
commit
19d95258ac
5 changed files with 35 additions and 4 deletions
|
@ -6,6 +6,8 @@ This section lists the release notes for stable versions of Home Manager and the
|
|||
|
||||
:leveloffset: 1
|
||||
|
||||
include::rl-2111.adoc[]
|
||||
|
||||
include::rl-2105.adoc[]
|
||||
|
||||
include::rl-2009.adoc[]
|
||||
|
|
21
doc/release-notes/rl-2111.adoc
Normal file
21
doc/release-notes/rl-2111.adoc
Normal file
|
@ -0,0 +1,21 @@
|
|||
[[sec-release-21.11]]
|
||||
== Release 21.11
|
||||
|
||||
This is the current unstable branch and the information in this
|
||||
section is therefore not final.
|
||||
|
||||
[[sec-release-21.11-highlights]]
|
||||
=== Highlights
|
||||
|
||||
This release has the following notable changes:
|
||||
|
||||
* Nothing has happened.
|
||||
|
||||
[[sec-release-21.11-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
|
||||
"21.11" or later.
|
||||
|
||||
* Nothing has happened.
|
|
@ -580,7 +580,7 @@ while [[ $# -gt 0 ]]; do
|
|||
export VERBOSE=1
|
||||
;;
|
||||
--version)
|
||||
echo 21.05
|
||||
echo 21.11
|
||||
exit 0
|
||||
;;
|
||||
*)
|
||||
|
|
|
@ -45,7 +45,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.05";
|
||||
home.stateVersion = "21.11";
|
||||
}
|
||||
EOF
|
||||
fi
|
||||
|
|
|
@ -5,8 +5,16 @@ with lib;
|
|||
{
|
||||
options = {
|
||||
home.stateVersion = mkOption {
|
||||
type =
|
||||
types.enum [ "18.09" "19.03" "19.09" "20.03" "20.09" "21.03" "21.05" ];
|
||||
type = types.enum [
|
||||
"18.09"
|
||||
"19.03"
|
||||
"19.09"
|
||||
"20.03"
|
||||
"20.09"
|
||||
"21.03"
|
||||
"21.05"
|
||||
"21.11"
|
||||
];
|
||||
default = "18.09";
|
||||
description = ''
|
||||
It is occasionally necessary for Home Manager to change
|
||||
|
|
Loading…
Reference in a new issue