From 1060bfd0338253107deaac346e362a9feab32068 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sun, 28 Apr 2019 22:10:12 +0200 Subject: NVIM v0.3.5 Maintenance release to fix issues found in v0.3.4. FIXES: f891131c6bb2 #9894 options: properly reset directories on 'autochdir' 9a5488c2a67e Remove MSVC optimization workaround for SHM_ALL 1793ba81762f Make SHM_ALL to a variable instead of a compound literal #define 947069ba1438 doc: mention "pynvim" module rename 46c7e12f27f1 #9629 screen: don't crash when drawing popupmenu with 'rightleft' option f1843c003576 vim-patch:8.1.0677: look-behind match may use the wrong line number 120442188872 #8325 :terminal : set topline based on window height aaa8c3d7112a #9504 :recover : Fix crash on non-existent *.swp --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0fb0d00f40..78fca28e36 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -113,7 +113,7 @@ set_property(CACHE CMAKE_BUILD_TYPE PROPERTY set(NVIM_VERSION_MAJOR 0) set(NVIM_VERSION_MINOR 3) set(NVIM_VERSION_PATCH 5) -set(NVIM_VERSION_PRERELEASE "-dev") # for package maintainers +set(NVIM_VERSION_PRERELEASE "") # for package maintainers # API level set(NVIM_API_LEVEL 5) # Bump this after any API change. -- cgit