From 0542baac28681050483c685c79efcb4d3c1e32ea Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sun, 27 Nov 2016 18:56:45 +0100 Subject: [PATCH] NVIM v0.1.7 FEATURES: 0213e99aaf6e PR #5561 'inccommand' FIXES: c685879eea5a PR #5632 SECURITY FIX d28d10864810 CheckHealth: Fix version comparison. 7be113d7959d PR #5670 shell_write_cb: Schedule error message. 1d4563771bcd jobs: ensure calling jobclose() on a pty job sends SIGHUP. 36c0ec6dd49c tui/suspend_event(): set STDIN to "blocking" 7a4d069bccd3, cf52b881d987 man.vim: avoid errors in unusual circumstances ed198737fd73 PR #5546 ex_global: Catch CTRL-C even if it is mapped. CHANGES: 9147331e212e PR #2905 encoding: only allow encoding=utf-8 5f0260808cf3 PR #5636 build: Upgrade jemalloc f1fed42ca7c8 PR #5567 l10n: Update Ukrainian translation --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cb8302deb7..53bb0f4b32 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -61,9 +61,9 @@ set_property(CACHE CMAKE_BUILD_TYPE PROPERTY # If not in a git repo (e.g., a tarball) these tokens define the complete # version string, else they are combined with the result of `git describe`. set(NVIM_VERSION_MAJOR 0) -set(NVIM_VERSION_MINOR 2) -set(NVIM_VERSION_PATCH 0) -set(NVIM_VERSION_PRERELEASE "-dev") # for package maintainers +set(NVIM_VERSION_MINOR 1) +set(NVIM_VERSION_PATCH 7) +set(NVIM_VERSION_PRERELEASE "") # for package maintainers # API level set(NVIM_API_LEVEL 1) # Bump this after any API change.