mirror of
https://github.com/appgurueu/modlib.git
synced 2024-11-21 23:03:44 +01:00
Release rolling-98
This commit is contained in:
parent
83ff2728e3
commit
ed3ab9c403
17
Readme.md
17
Readme.md
@ -293,6 +293,23 @@ A schematic format with support for metadata and baked light data. **Experimenta
|
||||
|
||||
## Release Notes
|
||||
|
||||
Rolling releases (corresponding to releases on ContentDB) are made when either:
|
||||
|
||||
* A fix for non-experimental, in-use functionality is implemented
|
||||
* A sufficient amount of features is published
|
||||
|
||||
The following release notes are *not exhaustive*. Refer to the commit log for an exhaustive changelog.
|
||||
|
||||
### `rolling-98`
|
||||
|
||||
* Fixes: `binary.(read|write)_(float|single|double)` (and thus also `bluon` number serialization)
|
||||
* `write_float` now doesn't provide an "auto" mode anymore, use `modlib.math.fround(x) == x` instead to determine whether `x` fits in a float
|
||||
* Removal of the `debug` module in favor of the [`dbg`](https://github.com/appgurueu/dbg) mod
|
||||
|
||||
### `rolling-97`
|
||||
|
||||
* Removal of tests in favor of a dedicated test repo
|
||||
|
||||
### `rolling-96`
|
||||
|
||||
* Additions: B3D writer; `mod.configuration()` returns the `conf, schema` now
|
||||
|
2
init.lua
2
init.lua
@ -119,7 +119,7 @@ end
|
||||
local rawget, rawset = rawget, rawset
|
||||
modlib = setmetatable({
|
||||
-- TODO bump on release
|
||||
version = 97,
|
||||
version = 98,
|
||||
modname = minetest and minetest.get_current_modname(),
|
||||
_RG = setmetatable({}, {
|
||||
__index = function(_, index)
|
||||
|
Loading…
Reference in New Issue
Block a user