diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-11-27 18:56:45 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-11-27 20:03:30 +0100 |
commit | 0542baac28681050483c685c79efcb4d3c1e32ea (patch) | |
tree | 5ae3ea76e2058ac6690639c6eaee8d0c608c12bb | |
parent | 7be113d7959df83bdec1e4d9a3e98264bc5d7a5b (diff) | |
download | rneovim-0542baac28681050483c685c79efcb4d3c1e32ea.tar.gz rneovim-0542baac28681050483c685c79efcb4d3c1e32ea.tar.bz2 rneovim-0542baac28681050483c685c79efcb4d3c1e32ea.zip |
NVIM v0.1.7v0.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
-rw-r--r-- | CMakeLists.txt | 6 |
1 files 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. |