util.dependencies: Increase Lua version to warn about to 5.4

No significant problems have been encountered with Lua 5.3 itself, so
apart from some odd problems in LuaExpat it seems about time to declare
it ready.
This commit is contained in:
Kim Alvefur 2019-06-19 19:16:09 +02:00
parent 693a64eedf
commit 587c2382b0

View file

@ -140,7 +140,7 @@ local function check_dependencies()
end
local function log_warnings()
if _VERSION > "Lua 5.2" then
if _VERSION > "Lua 5.3" then
prosody.log("warn", "Support for %s is experimental, please report any issues", _VERSION);
end
local ssl = softreq"ssl";