diff options
author | Gregory Anders <greg@gpanders.com> | 2021-12-04 14:03:28 -0700 |
---|---|---|
committer | Gregory Anders <greg@gpanders.com> | 2021-12-04 14:04:23 -0700 |
commit | 7b910a1716eabb18fd05f8c27370a7ab1e771074 (patch) | |
tree | cbcda92f0f94ee6321f81a089f8d77b325154297 | |
parent | 8dcf45c824b421b0b8723a09435ea40e2626b771 (diff) | |
download | rneovim-7b910a1716eabb18fd05f8c27370a7ab1e771074.tar.gz rneovim-7b910a1716eabb18fd05f8c27370a7ab1e771074.tar.bz2 rneovim-7b910a1716eabb18fd05f8c27370a7ab1e771074.zip |
chore: bump API version
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 87223b9d4e..4b62ca8556 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -141,9 +141,9 @@ set(NVIM_VERSION_PATCH 0) set(NVIM_VERSION_PRERELEASE "-dev") # for package maintainers # API level -set(NVIM_API_LEVEL 8) # Bump this after any API change. +set(NVIM_API_LEVEL 9) # 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. |