aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/version.h
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-07-14 06:49:59 -0400
committerGitHub <noreply@github.com>2017-07-14 06:49:59 -0400
commitda99ded25bf4972638b7c83c0ac165b7138d3aab (patch)
tree20a8956e5fe75c193dcaa96ed9be0ba96a2912cb /src/nvim/version.h
parentdabd9ef44bb30b403e5a13ab1b6534cef6d8d8d0 (diff)
parent08e4b6b4f377aa3cc9f9fd10c0049783dc1f4a94 (diff)
downloadrneovim-da99ded25bf4972638b7c83c0ac165b7138d3aab.tar.gz
rneovim-da99ded25bf4972638b7c83c0ac165b7138d3aab.tar.bz2
rneovim-da99ded25bf4972638b7c83c0ac165b7138d3aab.zip
Merge pull request #6486 from jamessan/vim8-patches
Bump Vim version to 8.0 and applied patches
Diffstat (limited to 'src/nvim/version.h')
-rw-r--r--src/nvim/version.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/version.h b/src/nvim/version.h
index a0babfb156..c10f6fa534 100644
--- a/src/nvim/version.h
+++ b/src/nvim/version.h
@@ -10,14 +10,14 @@ extern char* longVersion;
//
// Vim version number, name, etc. Patchlevel is defined in version.c.
//
-#define VIM_VERSION_MAJOR 7
-#define VIM_VERSION_MINOR 4
+#define VIM_VERSION_MAJOR 8
+#define VIM_VERSION_MINOR 0
#define VIM_VERSION_100 (VIM_VERSION_MAJOR * 100 + VIM_VERSION_MINOR)
// used for the runtime directory name
-#define VIM_VERSION_NODOT "vim74"
+#define VIM_VERSION_NODOT "vim80"
// swap file compatibility (max. length is 6 chars)
-#define VIM_VERSION_SHORT "7.4"
+#define VIM_VERSION_SHORT "8.0"
#ifdef INCLUDE_GENERATED_DECLARATIONS
# include "version.h.generated.h"