diff --git a/Readme.md b/Readme.md index 6d920ab..708d01c 100644 --- a/Readme.md +++ b/Readme.md @@ -224,6 +224,11 @@ This is best left explicit. First, you shouldn't be using numbered field keys if ## Versions +### `rolling-67` + +* Fixes various things, **most importantly objects indexing the global table** + * Concerns `kdtree`, `trie`, `ranked_set`, `vector`, `schema` + ### `rolling-66` * Adds `modlib.persistence.lua_log_file` diff --git a/init.lua b/init.lua index 0f82c28..36f1ed9 100644 --- a/init.lua +++ b/init.lua @@ -1,3 +1,5 @@ +local rawget, rawset = rawget, rawset + -- Lua version check if _VERSION then if _VERSION < "Lua 5" then @@ -78,7 +80,7 @@ end local load_module, get_resource, loadfile_exports modlib = setmetatable({ -- TODO bump on release - version = 66, + version = 67, modname = minetest and minetest.get_current_modname(), dir_delim = rawget(_G, "DIR_DELIM") or "/", _RG = setmetatable({}, { @@ -152,6 +154,8 @@ end _ml = modlib +modlib.mod.include"test.lua" +--modlib.mod.include"bench.lua" --[[ --modlib.mod.include"test.lua" ]]