From ed3ab9c4034c4e9aca45cdc8d3dff3a26b7b00fc Mon Sep 17 00:00:00 2001 From: Lars Mueller Date: Sun, 3 Jul 2022 19:00:12 +0200 Subject: [PATCH] Release rolling-98 --- Readme.md | 17 +++++++++++++++++ init.lua | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/Readme.md b/Readme.md index 12916ea..dfda295 100644 --- a/Readme.md +++ b/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 diff --git a/init.lua b/init.lua index 4b41f70..2e9ef43 100644 --- a/init.lua +++ b/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)