diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-04-28 22:10:12 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-04-28 22:10:12 +0200 |
commit | 1060bfd0338253107deaac346e362a9feab32068 (patch) | |
tree | 490cb1fe8e01030980c36d0646a7fdc279479b1c | |
parent | f891131c6bb2ab399130e28c9e483e071dafcbcb (diff) | |
download | rneovim-1060bfd0338253107deaac346e362a9feab32068.tar.gz rneovim-1060bfd0338253107deaac346e362a9feab32068.tar.bz2 rneovim-1060bfd0338253107deaac346e362a9feab32068.zip |
NVIM v0.3.5v0.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
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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. |