Skip to content

Commit

Permalink
Updated changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
ReFreezed committed Jun 20, 2022
1 parent d339c15 commit 2549221
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Changelog
LuaPreprocess

v1.19 (2022-06-20)
Library:
- All uses of '!' now work in macros.
- Added functions: getIndentation(), getCurrentIndentationInOutput(), getOutputSoFarOnLine(), writeFile().
- Added function readFile() as alias for getFileContents(). (The latter is now deprecated.)
- Added environment argument to evaluate().
- pp.metaEnvironment is now only a shallow copy of _G (i.e. 'pp.metaEnvironment.io == _G.io' etc.).
- LuaJIT: Added support for binary numerals (i.e. 0b110010).

v1.18 (2022-03-19)
Library:
- Added functions: loadResource(), evaluate(), pairsSorted(), sortNatural() and compareNatural().
Expand Down
4 changes: 2 additions & 2 deletions preprocess.lua
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--[[============================================================
--=
--= LuaPreprocess v1.18-dev - preprocessing library
--= LuaPreprocess v1.19 - preprocessing library
--= by Marcus 'ReFreezed' Thunström
--=
--= License: MIT (see the bottom of this file)
Expand Down Expand Up @@ -131,7 +131,7 @@



local PP_VERSION = "1.18.0-dev"
local PP_VERSION = "1.19.0"

local MAX_DUPLICATE_FILE_INSERTS = 1000 -- @Incomplete: Make this a parameter for processFile()/processString().

Expand Down

0 comments on commit 2549221

Please sign in to comment.