mirror of
https://github.com/neovim/neovim
synced 2025-07-16 01:01:49 +00:00
NVIM 0.10.3
Christmas edition. This is a maintenance release, focusing on fixes. FEATURES -------------------------------------------------------------------------------- -085f1cc99d
main: expand file ~\ or ~/ prefix on Windows FIXES -------------------------------------------------------------------------------- -f8ee92feec
deps build for ARM64 MSVC -163a532cfa
api: make `nvim_set_hl()` respect all `cterm` attributes (#31390) -6a63034b51
completion: avoid deleting text when completion leader changes #31448 -c257fe5582
coverity/510275: linematch out of bounds access (#30687) -7ca0408a1f
defaults: don't replace keycodes in Visual search mappings (#31460) -71faa2be88
events: don't expand `args.file` for Lua callback (#31473) -e80e8a0980
extmark: builtin completion can still affect nearby extmarks #31387 -7abc58349e
filetype: make filetype detection work with :doautocmd (#31470) -98ec48eefb
inccommand: ensure cursor is where it belongs -650dcbbafe
inspect: always show priority -b5b84b806a
inspect: show priority for treesitter highlights -bf66871113
lsp: cancel pending requests before refreshing (#31500) -308e9719cf
lsp: retrigger diagnostics request on server cancellation (#31345) (#31427) -84bbbd9fbe
lsp: str_byteindex_enc bounds checking #30747 -01fe4fc589
marks: skip right_gravity marks when deleting text -57b0fecd47
startup: report --startuptime error to stderr (#31131) -3c0e1a89d9
treesitter: show proper node name error messages -bbefbc995e
tui: avoid flushing buffer halfway an OSC 2 sequence (#30793) -424a452401
uri: uri_encode encodes brackets incorrectly for RFC2732 #31284 -1a030f6e04
vim.system: invalid MAX_TIMEOUT for 32-bit systems #31638 -ee7885aa21
9.1.0759: screenpos() may return invalid position (#30681) REFACTOR -------------------------------------------------------------------------------- -b286ba419a
fix incorrect use of enum (#30924) -fb5a0e28db
sort various Lua tables in src/ alphabetically (#30978) DOCUMENTATION -------------------------------------------------------------------------------- -9455686b6f
misc (#29410) -5480c0bd75
lua: "vim.bo" is always equivalent to :setlocal (#30733) -27fca9c7d2
lua: clarify when on_key "typed" will be empty (#30774)
This commit is contained in:
@ -146,7 +146,7 @@ endif()
|
||||
set(NVIM_VERSION_MAJOR 0)
|
||||
set(NVIM_VERSION_MINOR 10)
|
||||
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 12) # Bump this after any API change.
|
||||
|
@ -26,6 +26,7 @@
|
||||
</screenshots>
|
||||
|
||||
<releases>
|
||||
<release date="2024-12-21" version="0.10.3"/>
|
||||
<release date="2024-10-03" version="0.10.2"/>
|
||||
<release date="2024-07-24" version="0.10.1"/>
|
||||
<release date="2024-05-16" version="0.10.0"/>
|
||||
|
Reference in New Issue
Block a user