From b99dad7b4c6418978a21977262809021fab8d356 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Wed, 6 Nov 2019 01:54:45 -0800 Subject: NVIM v0.4.3 Maintenance release for the v0.4.x series. FIXES: 599ad5d3b805 Windows: nvim-qt v0.2.15 (fix "invalid font" error on startup) 1def94597b88 #11332 autocmd: Fix event name casing b678d33dd321 #11315 test: delete duplicate highlight group 924fa143ccd4 #11225 ex_echo: fix check for got_int 327e8ddb1830 #11138 deps: pass LDFLAGS+=-static a1f557690f8e #11222 mac: fix "tags file not sorted" bug on Catalina f2f37712a451 #11187 recovery mode (-r/-L): use headless_mode 4f452a67444a #11190 Remove "highbright bold" conversion. 9571a87d3de0 #11177 third-party: upgrade libvterm to 0.1.2 3817518ab43c #11074 terminfo_start: flush buffer 56d94129995a win_line: update `w_last_cursorline` always ddd3363a428b #11132 patch_terminfo_bugs: TERM=xterm with non-xterm: ignore smglr d453d2c48456 Fix redraw regression with w_p_cole in visual mode e0622b4c65c7 screen: missing redraw/highlight for ruler in message area b781f2b07273 cmdline: wildmenumode() should be true with wildoptions+=pum eef3809067ae #11027 win_update: fix redraw regression 43f4955f7048 #11069 Merge pull request from bfredl/virtualcol 6f693be1ee80 #11050 env: use putenv_s for LC_ALL, LANG, etc. 36e2846b493d #11094 paste: fix handling of "<" in cmdline 60b56ed458c6 #11126 Merge pull request from bfredl/invalidcell-0.4 8250d6795b06 screen: don't crash on invalid grid cells being recomposed --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 30c267ce8d..802f045914 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -115,7 +115,7 @@ set_property(CACHE CMAKE_BUILD_TYPE PROPERTY set(NVIM_VERSION_MAJOR 0) set(NVIM_VERSION_MINOR 4) 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 6) # Bump this after any API change. -- cgit