From 770c96d23027a70a62dc4fd28836e8ed76e6644647c3df87a2af2398956947bf Mon Sep 17 00:00:00 2001 From: Matej Cepl Date: Sat, 14 Oct 2023 11:33:29 +0000 Subject: [PATCH] =?UTF-8?q?-=20Update=20to=20version=200.9.4:=20=20=20This?= =?UTF-8?q?=20is=20a=20maintenance=20release,=20focusing=20on=20bug=20fixe?= =?UTF-8?q?s.=20=20=20-=20build:=20Fix=20exporting=20symbols=20on=20macOS?= =?UTF-8?q?=20Sonoma=20=20=20-=20api:=20Handle=20NUL=20in=20nvim=5Ferr=5Fw?= =?UTF-8?q?rite()=20and=20nvim=5Fout=5Fwrite()=20=20=20-=20autocmd:=20Api?= =?UTF-8?q?=20functions=20accepting=20garbage=20after=20event=20name=20=20?= =?UTF-8?q?=20-=20clang:=20Null=20pointer=20dereference=20in=20parse=5Fmsg?= =?UTF-8?q?pack=20=20=20-=20clipboard:=20Don't=20pass=20--foreground=20to?= =?UTF-8?q?=20wl-copy=20=20=20-=20exception:=20Remember=20whether=20messag?= =?UTF-8?q?e=20is=20multiline=20=20=20-=20float:=20Update=20position=20of?= =?UTF-8?q?=20anchored=20windows=20first=20=20=20-=20float:=20Fix=20some?= =?UTF-8?q?=20other=20crashes=20with=20:unhide=20or=20:all=20=20=20-=20lua?= =?UTF-8?q?:=20Not=20using=20global=20value=20in=20vim.opt=5Fglobal=20=20?= =?UTF-8?q?=20-=20lua:=20Show=20error=20message=20when=20failing=20to=20se?= =?UTF-8?q?t=20variable=20=20=20-=20mouse:=20Click=20on=20'statuscolumn'?= =?UTF-8?q?=20with=20'rightleft'=20=20=20-=20path:=20Accept=20special=20ch?= =?UTF-8?q?aracters=20on=20Windows=20=20=20-=20provider:=20Fix=20python3?= =?UTF-8?q?=20provider=20cannot=20detect=20python3.12=20=20=20-=20provider?= =?UTF-8?q?/pythonx:=20Import=20the=20correct=20module=20=20=20-=20rpc:=20?= =?UTF-8?q?Fix=20race=20condition=20=20=20-=20runtime:=20Add=20commentstri?= =?UTF-8?q?ng=20for=20D=20ftplugin=20=20=20-=20statuscolumn:=20Update=20nu?= =?UTF-8?q?mber=20hl=20for=20each=20screen=20line=20=20=20-=20terminal:=20?= =?UTF-8?q?Check=20terminal=20size=20at=20end=20of=20screen=20update=20=20?= =?UTF-8?q?=20-=20treesitter:=20Remove=20more=20double=20recursion=20=20?= =?UTF-8?q?=20-=20ui:=20"resize=20-1"=20with=20cmdheight=3D0=20=20=20-=20u?= =?UTF-8?q?nhide:=20Close=20floating=20windows=20first=20=20=20-=20unittes?= =?UTF-8?q?ts:=20Ignore=20=5F=5Fs128=20and=20=5F=5Fu128=20types=20in=20ffi?= =?UTF-8?q?=20=20=20-=20tutor:=20Clarify=20the=20meaning=20of=20=E2=9C=97?= =?UTF-8?q?=20and=20=E2=9C=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit OBS-URL: https://build.opensuse.org/package/show/editors/neovim?expand=0&rev=136 --- neovim-0.9.2.tar.gz | 3 --- neovim-0.9.4.tar.gz | 3 +++ neovim.changes | 29 +++++++++++++++++++++++++++++ neovim.spec | 2 +- 4 files changed, 33 insertions(+), 4 deletions(-) delete mode 100644 neovim-0.9.2.tar.gz create mode 100644 neovim-0.9.4.tar.gz diff --git a/neovim-0.9.2.tar.gz b/neovim-0.9.2.tar.gz deleted file mode 100644 index 892bcff..0000000 --- a/neovim-0.9.2.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:06b8518bad4237a28a67a4fbc16ec32581f35f216b27f4c98347acee7f5fb369 -size 11580390 diff --git a/neovim-0.9.4.tar.gz b/neovim-0.9.4.tar.gz new file mode 100644 index 0000000..2fffefc --- /dev/null +++ b/neovim-0.9.4.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:148356027ee8d586adebb6513a94d76accc79da9597109ace5c445b09d383093 +size 11585425 diff --git a/neovim.changes b/neovim.changes index af2b4ef..5b6d693 100644 --- a/neovim.changes +++ b/neovim.changes @@ -1,3 +1,32 @@ +------------------------------------------------------------------- +Sat Oct 14 11:13:13 UTC 2023 - Matej Cepl + +- Update to version 0.9.4: + This is a maintenance release, focusing on bug fixes. + - build: Fix exporting symbols on macOS Sonoma + - api: Handle NUL in nvim_err_write() and nvim_out_write() + - autocmd: Api functions accepting garbage after event name + - clang: Null pointer dereference in parse_msgpack + - clipboard: Don't pass --foreground to wl-copy + - exception: Remember whether message is multiline + - float: Update position of anchored windows first + - float: Fix some other crashes with :unhide or :all + - lua: Not using global value in vim.opt_global + - lua: Show error message when failing to set variable + - mouse: Click on 'statuscolumn' with 'rightleft' + - path: Accept special characters on Windows + - provider: Fix python3 provider cannot detect python3.12 + - provider/pythonx: Import the correct module + - rpc: Fix race condition + - runtime: Add commentstring for D ftplugin + - statuscolumn: Update number hl for each screen line + - terminal: Check terminal size at end of screen update + - treesitter: Remove more double recursion + - ui: "resize -1" with cmdheight=0 + - unhide: Close floating windows first + - unittests: Ignore __s128 and __u128 types in ffi + - tutor: Clarify the meaning of ✗ and ✓ + ------------------------------------------------------------------- Thu Sep 7 11:28:17 UTC 2023 - Matej Cepl diff --git a/neovim.spec b/neovim.spec index 4e775c1..30223bc 100644 --- a/neovim.spec +++ b/neovim.spec @@ -46,7 +46,7 @@ Requires: python3-neovim %bcond_with luajit %endif Name: neovim -Version: 0.9.2 +Version: 0.9.4 Release: 0 Summary: Vim-fork focused on extensibility and agility License: Apache-2.0 AND Vim