# HG changeset patch # User Kim Alvefur # Date 1560964569 -7200 # Node ID c523642ea2933307ff49719ed1bbec39d8c6a3ee # Parent e5532fbdd163707975df1f2eeeba151e0816d213 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. diff -r e5532fbdd163 -r c523642ea293 util/dependencies.lua --- a/util/dependencies.lua Wed Jun 19 08:51:39 2019 +0200 +++ b/util/dependencies.lua Wed Jun 19 19:16:09 2019 +0200 @@ -140,7 +140,7 @@ 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";