diff options
| author | William Boman <william@redwill.se> | 2022-05-02 03:07:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-02 03:07:15 +0200 |
| commit | 193f17140d9813e313360979566b12a0b15ff1ba (patch) | |
| tree | 4080f417f31ddde749784acc857d67e0a521c2c8 | |
| parent | docs: mention what not do with packer (#657) (diff) | |
| download | mason-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.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/run-autogen.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/tests.yml | 2 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | doc/nvim-lsp-installer.txt | 4 | ||||
| -rw-r--r-- | lua/nvim-lsp-installer/health/init.lua | 6 |
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 @@ -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 |
