Skip to content

Commit 2549221

Browse files
committed
Updated changelog.
1 parent d339c15 commit 2549221

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

Changelog.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog
22
LuaPreprocess
33

4+
v1.19 (2022-06-20)
5+
Library:
6+
- All uses of '!' now work in macros.
7+
- Added functions: getIndentation(), getCurrentIndentationInOutput(), getOutputSoFarOnLine(), writeFile().
8+
- Added function readFile() as alias for getFileContents(). (The latter is now deprecated.)
9+
- Added environment argument to evaluate().
10+
- pp.metaEnvironment is now only a shallow copy of _G (i.e. 'pp.metaEnvironment.io == _G.io' etc.).
11+
- LuaJIT: Added support for binary numerals (i.e. 0b110010).
12+
413
v1.18 (2022-03-19)
514
Library:
615
- Added functions: loadResource(), evaluate(), pairsSorted(), sortNatural() and compareNatural().

preprocess.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--[[============================================================
22
--=
3-
--= LuaPreprocess v1.18-dev - preprocessing library
3+
--= LuaPreprocess v1.19 - preprocessing library
44
--= by Marcus 'ReFreezed' Thunström
55
--=
66
--= License: MIT (see the bottom of this file)
@@ -131,7 +131,7 @@
131131

132132

133133

134-
local PP_VERSION = "1.18.0-dev"
134+
local PP_VERSION = "1.19.0"
135135

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

0 commit comments

Comments
 (0)