summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2023-10-09 22:37:28 +0200
committerbfredl <bjorn.linse@gmail.com>2023-10-09 22:38:17 +0200
commitd772f697a281ce9c58bf933997b87c7f27428a60 (patch)
tree37ed6dc618af442845d81b644b1e0a1203e9ad6a
parentcc398c5b06e191fd90c6927e92e41acea2893cf6 (diff)
NVIM 0.9.4v0.9.4
This is a maintenance release, focusing on bugfixes. 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 ✓ BUILD SYSTEM! - deps: Bump libmpack-lua to 1.0.11 - ci: fix mac release for Sonoma
-rw-r--r--CMakeLists.txt2
-rw-r--r--runtime/nvim.appdata.xml2
2 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index abe989af54..05e35f3235 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -111,7 +111,7 @@ set_default_buildtype()
set(NVIM_VERSION_MAJOR 0)
set(NVIM_VERSION_MINOR 9)
set(NVIM_VERSION_PATCH 4)
-set(NVIM_VERSION_PRERELEASE "-dev") # for package maintainers
+set(NVIM_VERSION_PRERELEASE "") # for package maintainers
# API level
set(NVIM_API_LEVEL 11) # Bump this after any API change.
diff --git a/runtime/nvim.appdata.xml b/runtime/nvim.appdata.xml
index ca735aafbc..fec493c64d 100644
--- a/runtime/nvim.appdata.xml
+++ b/runtime/nvim.appdata.xml
@@ -26,7 +26,7 @@
</screenshots>
<releases>
- <release date="2023-10-09" version="0.9.3"/>
+ <release date="2023-10-09" version="0.9.4"/>
<release date="2023-09-07" version="0.9.2"/>
<release date="2023-05-29" version="0.9.1"/>
<release date="2023-04-07" version="0.9.0"/>