mirror of
https://github.com/appgurueu/modlib.git
synced 2024-11-22 07:13:45 +01:00
Bump version
This commit is contained in:
parent
2825dc60aa
commit
7c1729acf9
@ -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`
|
||||
|
6
init.lua
6
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"
|
||||
]]
|
||||
|
Loading…
Reference in New Issue
Block a user