Bump version

This commit is contained in:
Lars Mueller 2021-04-23 12:43:05 +02:00
parent 2825dc60aa
commit 7c1729acf9
2 changed files with 10 additions and 1 deletions

@ -224,6 +224,11 @@ This is best left explicit. First, you shouldn't be using numbered field keys if
## Versions ## Versions
### `rolling-67`
* Fixes various things, **most importantly objects indexing the global table**
* Concerns `kdtree`, `trie`, `ranked_set`, `vector`, `schema`
### `rolling-66` ### `rolling-66`
* Adds `modlib.persistence.lua_log_file` * Adds `modlib.persistence.lua_log_file`

@ -1,3 +1,5 @@
local rawget, rawset = rawget, rawset
-- Lua version check -- Lua version check
if _VERSION then if _VERSION then
if _VERSION < "Lua 5" then if _VERSION < "Lua 5" then
@ -78,7 +80,7 @@ end
local load_module, get_resource, loadfile_exports local load_module, get_resource, loadfile_exports
modlib = setmetatable({ modlib = setmetatable({
-- TODO bump on release -- TODO bump on release
version = 66, version = 67,
modname = minetest and minetest.get_current_modname(), modname = minetest and minetest.get_current_modname(),
dir_delim = rawget(_G, "DIR_DELIM") or "/", dir_delim = rawget(_G, "DIR_DELIM") or "/",
_RG = setmetatable({}, { _RG = setmetatable({}, {
@ -152,6 +154,8 @@ end
_ml = modlib _ml = modlib
modlib.mod.include"test.lua"
--modlib.mod.include"bench.lua"
--[[ --[[
--modlib.mod.include"test.lua" --modlib.mod.include"test.lua"
]] ]]