Skip to content

Commit 596b276

Browse files
committed
Updated changelog.
1 parent 12aafd7 commit 596b276

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

Changelog.txt

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
Changelog
22
LuaPreprocess
33

4+
v1.20 (2022-07-01)
5+
Library:
6+
- getOutputSoFar() can now take an output buffer argument.
7+
- Detecting duplicate names in dual code: !!x, x = ...
8+
- Fixed evaluate() sometimes raising an error instead of returning it.
9+
- Fixed issue with files not ending with a newline.
10+
- Fixed silly internal error when Lua 5.2+ was used.
11+
Command line program:
12+
- Added options: --version, --help.
13+
- Added "alldone" message.
14+
- --meta can now take a file path.
15+
- Fixed silly internal error when Lua 5.2+ was used.
16+
Repository:
17+
- Fixed test suite not working in Lua 5.2+. Oops!
18+
419
v1.19 (2022-06-20)
520
Library:
621
- All uses of '!' now work in macros.
@@ -166,7 +181,7 @@ v1.3 (2019-01-05)
166181
- Added concatTokens().
167182

168183
v1.2 (2019-01-03)
169-
- Added pp.processString().
184+
- Added processString().
170185

171186
v1.1.1 (2019-01-02)
172187
- (No info)
@@ -175,4 +190,4 @@ v1.1 (2018-12-22)
175190
- (No info)
176191

177192
v1.0 (2018-11-02)
178-
- Initial release.
193+
- Initial release!

preprocess-cl.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22
_=[[
33
exec lua "$0" "$@"
4-
]]
4+
]]and nil
55
--==============================================================
66
--=
77
--= LuaPreprocess command line program

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.19-dev - preprocessing library
3+
--= LuaPreprocess v1.20 - 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.19.0-dev"
134+
local PP_VERSION = "1.20.0"
135135

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

0 commit comments

Comments
 (0)