From b33c7774931b61aa34b39807e1dff3181e986c63 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Tue, 9 Feb 2016 00:01:18 -0500 Subject: [PATCH] NVIM v0.1.2 Features: ef66249 tabline: Add %[] atom to the tabline, for random commands on click f338ea7 job control: implement jobpid() to get PID of job d0d5d17 job control: add 'detach' option to jobstart 7ad3f07 Add support for binary numbers Fixes: 291495a regexp_nfa.c: Speed up find_match_text() 317d5ca input: Do not set high-bit; preserve ALT modifier. 3b7c409 shell: Unquote &shell* options before using them Notable changes: 49b06a8 encoding: Always use "utf-8" as default for &encoding 79a6983 ui: revert "gui_running" hack Other changes: b4b4536 version: semver.org compliance c6aa716 reproducible builds: Stop using __{DATE,TIME}__ 46bd3c0 clipboard: Check $DISPLAY. Prefer xsel. #4150 f6ecd12 job control: don't kill PTY processes on exit 49f0417 clipboard: Detach clipboard helper, so contents is kept after nvim exit 38435e8 python: Add missing I/O methods to RedirectStream d26b01d eval: Use better error messages when failing to dump values 62d137c Remove swapsync. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e6c1b0a74bfdaf..34c8c9785a1bfa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -56,7 +56,7 @@ set_property(CACHE CMAKE_BUILD_TYPE PROPERTY set(NVIM_VERSION_MAJOR 0) set(NVIM_VERSION_MINOR 1) set(NVIM_VERSION_PATCH 2) -set(NVIM_VERSION_PRERELEASE "-dev") # for package maintainers +set(NVIM_VERSION_PRERELEASE "") # for package maintainers file(TO_CMAKE_PATH ${CMAKE_CURRENT_LIST_DIR}/.git FORCED_GIT_DIR) include(GetGitRevisionDescription)