diff options
| author | bfredl <bjorn.linse@gmail.com> | 2023-10-09 21:59:13 +0200 |
|---|---|---|
| committer | bfredl <bjorn.linse@gmail.com> | 2023-10-09 21:59:13 +0200 |
| commit | 3257fdac3662d230a3adc30a766c2cbac889f385 (patch) | |
| tree | 5cb713d1faeda7aa82d5caaadd01fe9667870b5b | |
| parent | 837f64f98aa5ab5eac55d5b1cfea04dfad19cc59 (diff) | |
NVIM 0.9.3v0.9.3
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
| -rw-r--r-- | CMakeLists.txt | 2 | ||||
| -rw-r--r-- | runtime/nvim.appdata.xml | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2c03fd1577..a836cc33a8 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 3) -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 aad6ccdd28..ca735aafbc 100644 --- a/runtime/nvim.appdata.xml +++ b/runtime/nvim.appdata.xml @@ -26,6 +26,7 @@ </screenshots> <releases> + <release date="2023-10-09" version="0.9.3"/> <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"/> |
