diff options
author | Kim Alvefur <zash@zash.se> | 2019-06-19 19:16:09 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-06-19 19:16:09 +0200 |
commit | 587c2382b0d7940927a0f6b7b87809eca890f9b7 (patch) | |
tree | 5eb34be9c82674348fba776bd2aefb45fee22b1a /util/dependencies.lua | |
parent | 693a64eedfe149f36b2e3b6374dd41fbfd41cad0 (diff) | |
download | prosody-587c2382b0d7940927a0f6b7b87809eca890f9b7.tar.gz prosody-587c2382b0d7940927a0f6b7b87809eca890f9b7.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.
Diffstat (limited to 'util/dependencies.lua')
-rw-r--r-- | util/dependencies.lua | 2 |
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"; |