Skip to content

Commit

Permalink
Updated changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
ReFreezed committed Jul 1, 2022
1 parent 12aafd7 commit 596b276
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
19 changes: 17 additions & 2 deletions Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Changelog
LuaPreprocess

v1.20 (2022-07-01)
Library:
- getOutputSoFar() can now take an output buffer argument.
- Detecting duplicate names in dual code: !!x, x = ...
- Fixed evaluate() sometimes raising an error instead of returning it.
- Fixed issue with files not ending with a newline.
- Fixed silly internal error when Lua 5.2+ was used.
Command line program:
- Added options: --version, --help.
- Added "alldone" message.
- --meta can now take a file path.
- Fixed silly internal error when Lua 5.2+ was used.
Repository:
- Fixed test suite not working in Lua 5.2+. Oops!

v1.19 (2022-06-20)
Library:
- All uses of '!' now work in macros.
Expand Down Expand Up @@ -166,7 +181,7 @@ v1.3 (2019-01-05)
- Added concatTokens().

v1.2 (2019-01-03)
- Added pp.processString().
- Added processString().

v1.1.1 (2019-01-02)
- (No info)
Expand All @@ -175,4 +190,4 @@ v1.1 (2018-12-22)
- (No info)

v1.0 (2018-11-02)
- Initial release.
- Initial release!
2 changes: 1 addition & 1 deletion preprocess-cl.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
_=[[
exec lua "$0" "$@"
]]
]]and nil
--==============================================================
--=
--= LuaPreprocess command line program
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.19-dev - preprocessing library
--= LuaPreprocess v1.20 - 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.19.0-dev"
local PP_VERSION = "1.20.0"

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

Expand Down

0 comments on commit 596b276

Please sign in to comment.