diff options
| author | William Boman <william@redwill.se> | 2025-02-19 08:36:37 +0100 |
|---|---|---|
| committer | William Boman <william@redwill.se> | 2025-02-19 12:15:49 +0100 |
| commit | 8dadbd63e27d90548d1bd545ac84bbaf00ae61a4 (patch) | |
| tree | 0e7ee90cacc5feba6f6fe5148661bb4ebd89d212 | |
| parent | feat(context): add ctx:await() (diff) | |
| download | mason-8dadbd63e27d90548d1bd545ac84bbaf00ae61a4.tar mason-8dadbd63e27d90548d1bd545ac84bbaf00ae61a4.tar.gz mason-8dadbd63e27d90548d1bd545ac84bbaf00ae61a4.tar.bz2 mason-8dadbd63e27d90548d1bd545ac84bbaf00ae61a4.tar.lz mason-8dadbd63e27d90548d1bd545ac84bbaf00ae61a4.tar.xz mason-8dadbd63e27d90548d1bd545ac84bbaf00ae61a4.tar.zst mason-8dadbd63e27d90548d1bd545ac84bbaf00ae61a4.zip | |
chore!: update required Neovim version to 0.10.0
| -rw-r--r-- | .github/ISSUE_TEMPLATE/general_issue.yaml | 4 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/package_installation_form.yaml | 2 | ||||
| -rw-r--r-- | .github/ISSUE_TEMPLATE/package_issue.yaml | 4 | ||||
| -rw-r--r-- | .github/workflows/tests.yml | 5 | ||||
| -rw-r--r-- | README.md | 4 | ||||
| -rw-r--r-- | doc/mason.txt | 4 | ||||
| -rw-r--r-- | lua/mason/health.lua | 6 |
7 files changed, 12 insertions, 17 deletions
diff --git a/.github/ISSUE_TEMPLATE/general_issue.yaml b/.github/ISSUE_TEMPLATE/general_issue.yaml index 95b00a81..5ccb9d9b 100644 --- a/.github/ISSUE_TEMPLATE/general_issue.yaml +++ b/.github/ISSUE_TEMPLATE/general_issue.yaml @@ -51,10 +51,10 @@ body: - type: textarea attributes: - label: "Neovim version (>= 0.9.0)" + label: "Neovim version (>= 0.10.0)" description: "Output of `nvim --version`" placeholder: | - NVIM v0.9.0-dev + NVIM v0.10.0-dev Build type: Release LuaJIT 2.1.0-beta3 validations: diff --git a/.github/ISSUE_TEMPLATE/package_installation_form.yaml b/.github/ISSUE_TEMPLATE/package_installation_form.yaml index 682f63d4..ba22ad1e 100644 --- a/.github/ISSUE_TEMPLATE/package_installation_form.yaml +++ b/.github/ISSUE_TEMPLATE/package_installation_form.yaml @@ -68,7 +68,7 @@ body: - type: textarea attributes: - label: "Neovim version (>= 0.9.0)" + label: "Neovim version (>= 0.10.0)" description: "Output of `nvim --version`" placeholder: | NVIM v0.7.0-dev diff --git a/.github/ISSUE_TEMPLATE/package_issue.yaml b/.github/ISSUE_TEMPLATE/package_issue.yaml index be51e4c2..486b53cd 100644 --- a/.github/ISSUE_TEMPLATE/package_issue.yaml +++ b/.github/ISSUE_TEMPLATE/package_issue.yaml @@ -70,10 +70,10 @@ body: - type: textarea attributes: - label: "Neovim version (>= 0.9.0)" + label: "Neovim version (>= 0.10.0)" description: "Output of `nvim --version`" placeholder: | - NVIM v0.9.0-dev + NVIM v0.10.0-dev Build type: Release LuaJIT 2.1.0-beta3 validations: diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d019b2df..79f3488d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,11 +12,6 @@ jobs: fail-fast: false matrix: nvim_version: - - v0.9.0 - - v0.9.1 - - v0.9.2 - - v0.9.4 - - v0.9.5 - v0.10.0 - v0.10.1 - v0.10.2 @@ -79,10 +79,10 @@ party plugins to further integrate these. The following plugins are recommended: `curl`, and `Invoke-WebRequest` are all perfect substitutes). The _minimum_ recommended requirements are: -- neovim `>= 0.9.0` +- neovim `>= 0.10.0` - For Unix systems: - `git(1)` - - `curl(1)` or `wget(1)` + - `curl(1)` or `GNU wget(1)` - `unzip(1)` - GNU tar (`tar(1)` or `gtar(1)` depending on platform) - `gzip(1)` diff --git a/doc/mason.txt b/doc/mason.txt index 574a8f92..4af3b91a 100644 --- a/doc/mason.txt +++ b/doc/mason.txt @@ -1,6 +1,6 @@ *mason.nvim* -Minimum version of neovim: 0.9.0 +Minimum version of neovim: 0.10.0 Author: William Boman *mason-help-guide* @@ -53,7 +53,7 @@ REQUIREMENTS *mason-requirements* utilities (for example, `wget`, `curl`, and `Invoke-WebRequest` are all perfect substitutes). The _minimum_ recommended requirements are: -- neovim `>= 0.9.0` +- neovim `>= 0.10.0` - For Unix systems: `git(1)`, `curl(1)` or `wget(1)`, `unzip(1)`, `tar(1)`, `gzip(1)` - For Windows systems: pwsh or powershell, git, tar, and 7zip or peazip or diff --git a/lua/mason/health.lua b/lua/mason/health.lua index 42e5f4bd..5c54b1b3 100644 --- a/lua/mason/health.lua +++ b/lua/mason/health.lua @@ -81,10 +81,10 @@ local function check_registries() end local function check_neovim() - if vim.fn.has "nvim-0.9.0" == 1 then - report_ok "neovim version >= 0.9.0" + if vim.fn.has "nvim-0.10.0" == 1 then + report_ok "neovim version >= 0.10.0" else - report_error("neovim version < 0.9.0", { "Upgrade Neovim." }) + report_error("neovim version < 0.10.0", { "Upgrade Neovim." }) end end |
