From d9665818816bcac052fdc8ad840cb062b8ee0e73 Mon Sep 17 00:00:00 2001 From: RDW Date: Mon, 21 Oct 2024 01:04:10 +0200 Subject: [PATCH] Repo: Update the changelog for v0.0.20 --- changelog.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/changelog.lua b/changelog.lua index b7b05df41..3f7f031b6 100644 --- a/changelog.lua +++ b/changelog.lua @@ -1,4 +1,17 @@ local changelog = { + ["v0.0.20"] = { + breakingChanges = { + "Due to a larger rework in the RML library, its WebGPU render interface has seen significant changes", + }, + newFeatures = { + "Three more table utilities have been added: `table.keys`,`table.values`, and `table.shuffle`", + "A new and experimental event-based AsyncFileReader module is now part of the file system API", + "It's now possible to read ZIP archives while avoiding disk I/O via `miniz.new_reader_memory`", + }, + improvements = { + "Self-contained executables can now easily `require` scripts and `extract` files from the virtual file system", + }, + }, ["v0.0.19"] = { newFeatures = { "LuaJIT's built-in CPU profiler can be enabled with the new `profile` command, or loaded as `profiler`",