diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-07-02 18:12:11 +0200 |
---|---|---|
committer | Björn Linse <bjorn.linse@gmail.com> | 2021-07-02 18:12:11 +0200 |
commit | 62d67de598286734536b63807d6b0f4e82b34128 (patch) | |
tree | 96b65e8025bda65d63343976750d45f74a7dba0b /CMakeLists.txt | |
parent | a5ac2f45ff84a688a09479f357a9909d5b914294 (diff) | |
download | rneovim-62d67de598286734536b63807d6b0f4e82b34128.tar.gz rneovim-62d67de598286734536b63807d6b0f4e82b34128.tar.bz2 rneovim-62d67de598286734536b63807d6b0f4e82b34128.zip |
version bump
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 707079fc77..a3c3fec279 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -136,14 +136,14 @@ 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 5) +set(NVIM_VERSION_MINOR 6) set(NVIM_VERSION_PATCH 0) -set(NVIM_VERSION_PRERELEASE "") # for package maintainers +set(NVIM_VERSION_PRERELEASE "-dev") # for package maintainers # API level -set(NVIM_API_LEVEL 7) # Bump this after any API change. +set(NVIM_API_LEVEL 8) # Bump this after any API change. set(NVIM_API_LEVEL_COMPAT 0) # Adjust this after a _breaking_ API change. -set(NVIM_API_PRERELEASE false) +set(NVIM_API_PRERELEASE true) set(NVIM_VERSION_BUILD_TYPE "${CMAKE_BUILD_TYPE}") # NVIM_VERSION_CFLAGS set further below. |