Skip to content

Commit 28058b3

Browse files
committed
treewide: 25.05 -> 25.11
(cherry picked from commit af1ce0d)
1 parent e36a7fd commit 28058b3

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

MAINTAINING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ Deprecations should include a comment in the format of:
1313

1414
where:
1515

16-
- `n` is the current release; 25.05 at the time of writing
17-
- `n+1` is the next release; 25.11 at the time of writing
18-
- `n+2` is the release following `n+1`; 26.05 at the time of writing
16+
- `n` is the current release; 25.11 at the time of writing
17+
- `n+1` is the next release; 26.05 at the time of writing
18+
- `n+2` is the release following `n+1`; 26.11 at the time of writing
1919

2020
If a warning is created on release `n`, then:
2121

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ If you have any question, please use the [discussions page](https://github.com/n
9191
> Nixvim needs to be installed with a compatible nixpkgs version.
9292
> This means that the `main` branch of Nixvim requires to be installed with `nixpkgs-unstable`.
9393
>
94-
> If you want to use Nixvim with nixpkgs 25.05 you should use the `nixos-25.05` branch.
94+
> If you want to use Nixvim with nixpkgs 25.11 you should use the `nixos-25.11` branch.
9595
9696
For more detail, see the [Installation](https://nix-community.github.io/nixvim) section of our documentation.
9797

@@ -108,7 +108,7 @@ let
108108
nixvim = import (builtins.fetchGit {
109109
url = "https://github.com/nix-community/nixvim";
110110
# If you are not running an unstable channel of nixpkgs, select the corresponding branch of Nixvim.
111-
# ref = "nixos-25.05";
111+
# ref = "nixos-25.11";
112112
});
113113
in
114114
{
@@ -151,7 +151,7 @@ flakes, just add the `nixvim` input:
151151
inputs.nixvim = {
152152
url = "github:nix-community/nixvim";
153153
# If you are not running an unstable channel of nixpkgs, select the corresponding branch of Nixvim.
154-
# url = "github:nix-community/nixvim/nixos-25.05";
154+
# url = "github:nix-community/nixvim/nixos-25.11";
155155
156156
inputs.nixpkgs.follows = "nixpkgs";
157157
};
@@ -286,7 +286,7 @@ in pkgs.mkShell {
286286
Documentation is available on this project's GitHub Pages page:
287287
[https://nix-community.github.io/nixvim](https://nix-community.github.io/nixvim)
288288

289-
The stable documentation is also available at [https://nix-community.github.io/nixvim/25.05](https://nix-community.github.io/nixvim/25.05).
289+
The stable documentation is also available at [https://nix-community.github.io/nixvim/25.11](https://nix-community.github.io/nixvim/25.11).
290290

291291
If the option `enableMan` is set to `true` (by default it is), man pages will also
292292
be installed containing the same information, they can be viewed with `man nixvim`.

docs/user-guide/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ When using Nixvim, it is possible to encounter errors about something not being
8484
```
8585

8686
This usually means one of two things:
87-
- The nixpkgs version is not in line with NixVim (for example nixpkgs nixos-25.05 is used with NixVim master)
87+
- The nixpkgs version is not in line with NixVim (for example nixpkgs nixos-25.11 is used with NixVim master)
8888
- The nixpkgs unstable version used with NixVim is not recent enough.
8989

9090
When building nixvim using flakes and our ["standalone mode"][standalone], we usually recommend _not_ declaring a "follows" for `inputs.nixvim`.

docs/user-guide/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ You must use a `nixpkgs` version compatible with the nixvim version you choose.
55
The `main` branch requires to use a _very recent_ version of nixpkgs unstable.
66
In order to guarantee the compatibility between nixvim & nixpkgs it is recommended to always update both at the same time.
77

8-
When using a `stable` version you must use the corresponding nixvim branch, for example `nixos-25.05` when using NixOS 25.05.
8+
When using a `stable` version you must use the corresponding nixvim branch, for example `nixos-25.11` when using NixOS 25.11.
99

1010
Failure to use the correct branch, or an old revision of nixpkgs will likely result in errors of the form `vimPlugins.<name> attribute not found`.
1111

0 commit comments

Comments
 (0)