Skip to content

Commit 32977c2

Browse files
lambdalisueclaude
andcommitted
Update supported versions
- Deno: 1.45.0 β†’ 2.3.0 - Vim: 9.1.0448 β†’ 9.1.1646 - Neovim: 0.10.0 β†’ 0.11.3 Following the support policy to use latest available versions. πŸ€– Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 3f82789 commit 32977c2

4 files changed

Lines changed: 11 additions & 13 deletions

File tree

β€Ž.github/workflows/test.ymlβ€Ž

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ jobs:
3434
runner:
3535
- ubuntu-latest
3636
deno_version:
37-
- "1.x"
3837
- "2.x"
3938
runs-on: ${{ matrix.runner }}
4039
steps:
@@ -74,12 +73,11 @@ jobs:
7473
- macos-latest
7574
- ubuntu-latest
7675
deno_version:
77-
- "1.45.0"
78-
- "1.x"
76+
- "2.3.0"
7977
- "2.x"
8078
host_version:
81-
- vim: "v9.1.0448"
82-
nvim: "v0.10.0"
79+
- vim: "v9.1.1646"
80+
nvim: "v0.11.3"
8381

8482
runs-on: ${{ matrix.runner }}
8583

β€ŽREADME.mdβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<strong>Denops</strong><br>
44
<sup>An ecosystem for Vim/Neovim enabling developers to write plugins in Deno.</sup>
55

6-
[![Deno 1.45.0 or above](https://img.shields.io/badge/Deno-Support%201.45.0-yellowgreen.svg?logo=deno)](https://github.com/denoland/deno/tree/v1.45.0)
7-
[![Vim 9.1.0448 or above](https://img.shields.io/badge/Vim-Support%209.1.0448-yellowgreen.svg?logo=vim)](https://github.com/vim/vim/tree/v9.1.0448)
8-
[![Neovim 0.10.0 or above](https://img.shields.io/badge/Neovim-Support%200.10.0-yellowgreen.svg?logo=neovim&logoColor=white)](https://github.com/neovim/neovim/tree/v0.10.0)
6+
[![Deno 2.3.0 or above](https://img.shields.io/badge/Deno-Support%202.3.0-yellowgreen.svg?logo=deno)](https://github.com/denoland/deno/tree/v2.3.0)
7+
[![Vim 9.1.1646 or above](https://img.shields.io/badge/Vim-Support%209.1.1646-yellowgreen.svg?logo=vim)](https://github.com/vim/vim/tree/v9.1.1646)
8+
[![Neovim 0.11.3 or above](https://img.shields.io/badge/Neovim-Support%200.11.3-yellowgreen.svg?logo=neovim&logoColor=white)](https://github.com/neovim/neovim/tree/v0.11.3)
99

1010
[![MIT License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
1111
[![test](https://github.com/vim-denops/denops.vim/actions/workflows/test.yml/badge.svg)](https://github.com/vim-denops/denops.vim/actions/workflows/test.yml)
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"deno": "1.45.0",
3-
"vim": "9.1.0448",
4-
"neovim": "0.10.0"
2+
"deno": "2.3.0",
3+
"vim": "9.1.1646",
4+
"neovim": "0.11.3"
55
}

β€Žplugin/denops.vimβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ if exists('g:loaded_denops')
33
endif
44
let g:loaded_denops = 1
55

6-
if !get(g:, 'denops_disable_version_check') && !has('nvim-0.10.0') && !has('patch-9.1.0448')
6+
if !get(g:, 'denops_disable_version_check') && !has('nvim-0.11.3') && !has('patch-9.1.1646')
77
echohl WarningMsg
8-
echomsg '[denops] Denops requires Vim 9.1.0448 or Neovim 0.10.0. See ":h g:denops_disable_version_check" to disable this check.'
8+
echomsg '[denops] Denops requires Vim 9.1.1646 or Neovim 0.11.3. See ":h g:denops_disable_version_check" to disable this check.'
99
echohl None
1010
finish
1111
endif

0 commit comments

Comments
Β (0)