aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-06-19 19:16:09 +0200
committerKim Alvefur <zash@zash.se>2019-06-19 19:16:09 +0200
commit4e7d17bfff9ff33d5c0b58cae1941aac45090b70 (patch)
tree5eb34be9c82674348fba776bd2aefb45fee22b1a
parent6c5d0e50e7d5d890c30308aad97ecbd4e65c5fcb (diff)
downloadprosody-4e7d17bfff9ff33d5c0b58cae1941aac45090b70.tar.gz
prosody-4e7d17bfff9ff33d5c0b58cae1941aac45090b70.zip
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.
-rw-r--r--util/dependencies.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua
index 7c7b938e..84e2dd5c 100644
--- a/util/dependencies.lua
+++ b/util/dependencies.lua
@@ -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";