Skip to content

Commit 8dadbd6

Browse files
committed
chore!: update required Neovim version to 0.10.0
1 parent e13d54a commit 8dadbd6

File tree

7 files changed

+12
-17
lines changed

7 files changed

+12
-17
lines changed

.github/ISSUE_TEMPLATE/general_issue.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ body:
5151

5252
- type: textarea
5353
attributes:
54-
label: "Neovim version (>= 0.9.0)"
54+
label: "Neovim version (>= 0.10.0)"
5555
description: "Output of `nvim --version`"
5656
placeholder: |
57-
NVIM v0.9.0-dev
57+
NVIM v0.10.0-dev
5858
Build type: Release
5959
LuaJIT 2.1.0-beta3
6060
validations:

.github/ISSUE_TEMPLATE/package_installation_form.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ body:
6868

6969
- type: textarea
7070
attributes:
71-
label: "Neovim version (>= 0.9.0)"
71+
label: "Neovim version (>= 0.10.0)"
7272
description: "Output of `nvim --version`"
7373
placeholder: |
7474
NVIM v0.7.0-dev

.github/ISSUE_TEMPLATE/package_issue.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ body:
7070

7171
- type: textarea
7272
attributes:
73-
label: "Neovim version (>= 0.9.0)"
73+
label: "Neovim version (>= 0.10.0)"
7474
description: "Output of `nvim --version`"
7575
placeholder: |
76-
NVIM v0.9.0-dev
76+
NVIM v0.10.0-dev
7777
Build type: Release
7878
LuaJIT 2.1.0-beta3
7979
validations:

.github/workflows/tests.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
nvim_version:
15-
- v0.9.0
16-
- v0.9.1
17-
- v0.9.2
18-
- v0.9.4
19-
- v0.9.5
2015
- v0.10.0
2116
- v0.10.1
2217
- v0.10.2

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ party plugins to further integrate these. The following plugins are recommended:
7979
`curl`, and `Invoke-WebRequest` are all perfect substitutes).
8080
The _minimum_ recommended requirements are:
8181

82-
- neovim `>= 0.9.0`
82+
- neovim `>= 0.10.0`
8383
- For Unix systems:
8484
- `git(1)`
85-
- `curl(1)` or `wget(1)`
85+
- `curl(1)` or `GNU wget(1)`
8686
- `unzip(1)`
8787
- GNU tar (`tar(1)` or `gtar(1)` depending on platform)
8888
- `gzip(1)`

doc/mason.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
*mason.nvim*
22

3-
Minimum version of neovim: 0.9.0
3+
Minimum version of neovim: 0.10.0
44

55
Author: William Boman
66
*mason-help-guide*
@@ -53,7 +53,7 @@ REQUIREMENTS *mason-requirements*
5353
utilities (for example, `wget`, `curl`, and `Invoke-WebRequest` are all
5454
perfect substitutes). The _minimum_ recommended requirements are:
5555

56-
- neovim `>= 0.9.0`
56+
- neovim `>= 0.10.0`
5757
- For Unix systems: `git(1)`, `curl(1)` or `wget(1)`, `unzip(1)`, `tar(1)`,
5858
`gzip(1)`
5959
- For Windows systems: pwsh or powershell, git, tar, and 7zip or peazip or

lua/mason/health.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ local function check_registries()
8181
end
8282

8383
local function check_neovim()
84-
if vim.fn.has "nvim-0.9.0" == 1 then
85-
report_ok "neovim version >= 0.9.0"
84+
if vim.fn.has "nvim-0.10.0" == 1 then
85+
report_ok "neovim version >= 0.10.0"
8686
else
87-
report_error("neovim version < 0.9.0", { "Upgrade Neovim." })
87+
report_error("neovim version < 0.10.0", { "Upgrade Neovim." })
8888
end
8989
end
9090

0 commit comments

Comments
 (0)