diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2025-04-05 15:48:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-05 22:48:28 +0000 |
commit | f9dec1228d1741859a89b64de7ac9765f12c2d3d (patch) | |
tree | 44057b4310e4bcde47ea56c1bb14be3f9930b716 | |
parent | 57d99a515f57454370b6c122545ea53685d22d1b (diff) | |
download | rneovim-f9dec1228d1741859a89b64de7ac9765f12c2d3d.tar.gz rneovim-f9dec1228d1741859a89b64de7ac9765f12c2d3d.tar.bz2 rneovim-f9dec1228d1741859a89b64de7ac9765f12c2d3d.zip |
build: bump NVIM_API_LEVEL #33340
Bumping NVIM_API_LEVEL is pretty much required after every major
release, because it's also used to correlated Lua stdlib changes to
a Nvim version.
-rw-r--r-- | CMakeLists.txt | 4 | ||||
-rw-r--r-- | src/gen/util.lua | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 01462ab233..ad696018de 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -150,9 +150,9 @@ set(NVIM_VERSION_PATCH 0) set(NVIM_VERSION_PRERELEASE "-dev") # for package maintainers # API level -set(NVIM_API_LEVEL 13) # Bump this after any API/stdlib change. +set(NVIM_API_LEVEL 14) # Bump this after any API/stdlib change. set(NVIM_API_LEVEL_COMPAT 0) # Adjust this after a _breaking_ API change. -set(NVIM_API_PRERELEASE false) +set(NVIM_API_PRERELEASE true) # We _want_ assertions in RelWithDebInfo build-type. if(CMAKE_C_FLAGS_RELWITHDEBINFO MATCHES DNDEBUG) diff --git a/src/gen/util.lua b/src/gen/util.lua index 5940221abe..9a52c6844e 100644 --- a/src/gen/util.lua +++ b/src/gen/util.lua @@ -20,6 +20,7 @@ end -- Map of api_level:version, by inspection of: -- :lua= vim.mpack.decode(vim.fn.readfile('test/functional/fixtures/api_level_9.mpack','B')).version M.version_level = { + [14] = '0.12.0', [13] = '0.11.0', [12] = '0.10.0', [11] = '0.9.0', |