aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Boman <william@redwill.se>2022-05-02 03:07:15 +0200
committerGitHub <noreply@github.com>2022-05-02 03:07:15 +0200
commit193f17140d9813e313360979566b12a0b15ff1ba (patch)
tree4080f417f31ddde749784acc857d67e0a521c2c8
parentdocs: mention what not do with packer (#657) (diff)
downloadmason-193f17140d9813e313360979566b12a0b15ff1ba.tar
mason-193f17140d9813e313360979566b12a0b15ff1ba.tar.gz
mason-193f17140d9813e313360979566b12a0b15ff1ba.tar.bz2
mason-193f17140d9813e313360979566b12a0b15ff1ba.tar.lz
mason-193f17140d9813e313360979566b12a0b15ff1ba.tar.xz
mason-193f17140d9813e313360979566b12a0b15ff1ba.tar.zst
mason-193f17140d9813e313360979566b12a0b15ff1ba.zip
chore: bump minimum neovim version to 0.7.0 (#656)
-rw-r--r--.github/workflows/metadata-diff.yml2
-rw-r--r--.github/workflows/run-autogen.yml2
-rw-r--r--.github/workflows/tests.yml2
-rw-r--r--README.md2
-rw-r--r--doc/nvim-lsp-installer.txt4
-rw-r--r--lua/nvim-lsp-installer/health/init.lua6
6 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/metadata-diff.yml b/.github/workflows/metadata-diff.yml
index 024c8b61..76b1cd84 100644
--- a/.github/workflows/metadata-diff.yml
+++ b/.github/workflows/metadata-diff.yml
@@ -14,7 +14,7 @@ jobs:
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
- version: v0.6.0
+ version: v0.7.0
- name: Clone dependencies
run: |
mkdir -p ~/.local/share/nvim/site/pack/packer/start
diff --git a/.github/workflows/run-autogen.yml b/.github/workflows/run-autogen.yml
index 99374c3c..e2602aaf 100644
--- a/.github/workflows/run-autogen.yml
+++ b/.github/workflows/run-autogen.yml
@@ -14,7 +14,7 @@ jobs:
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
- version: v0.6.0
+ version: v0.7.0
- name: Clone dependencies
run: |
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 4e6640fd..68c2e219 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -14,6 +14,6 @@ jobs:
- uses: rhysd/action-setup-vim@v1
with:
neovim: true
- version: v0.6.0
+ version: v0.7.0
- name: Run tests
run: make test
diff --git a/README.md b/README.md
index 60eca8ef..430f607c 100644
--- a/README.md
+++ b/README.md
@@ -42,7 +42,7 @@ On top of just providing commands for installing & uninstalling LSP servers, it:
## Installation
-Requires neovim `>= 0.6.0` and [nvim-lspconfig](https://github.com/neovim/nvim-lspconfig). The _full requirements_ to
+Requires neovim `>= 0.7.0` and [nvim-lspconfig](https://github.com/neovim/nvim-lspconfig). The _full requirements_ to
install _all_ servers are:
- For Unix systems: git(1), curl(1) or wget(1), unzip(1), tar(1), gzip(1)
diff --git a/doc/nvim-lsp-installer.txt b/doc/nvim-lsp-installer.txt
index 68f865d8..1ad223ae 100644
--- a/doc/nvim-lsp-installer.txt
+++ b/doc/nvim-lsp-installer.txt
@@ -1,6 +1,6 @@
*nvim-lsp-installer*
-Minimum version of neovim: 0.6.0
+Minimum version of neovim: 0.7.0
Author: William Boman
@@ -23,7 +23,7 @@ it:
- hosts a suite of system tests for all supported servers
- has full support for Windows
-Requires neovim `>= 0.6.0` and nvim-lspconfig. The _full requirements_ to
+Requires neovim `>= 0.7.0` and nvim-lspconfig. The _full requirements_ to
install _all_ servers are:
- For Unix systems: git(1), curl(1) or wget(1), unzip(1), tar(1), gzip(1)
diff --git a/lua/nvim-lsp-installer/health/init.lua b/lua/nvim-lsp-installer/health/init.lua
index 9c4c140a..02d161d3 100644
--- a/lua/nvim-lsp-installer/health/init.lua
+++ b/lua/nvim-lsp-installer/health/init.lua
@@ -125,10 +125,10 @@ end
function M.check()
health.report_start "nvim-lsp-installer report"
- if vim.fn.has "nvim-0.6.0" == 1 then
- health.report_ok "neovim version >= 0.6.0"
+ if vim.fn.has "nvim-0.7.0" == 1 then
+ health.report_ok "neovim version >= 0.7.0"
else
- health.report_error "neovim version < 0.6.0"
+ health.report_error "neovim version < 0.7.0"
end
local completed = 0