aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2022-06-30 17:03:50 +0200
committerKim Alvefur <zash@zash.se>2022-06-30 17:03:50 +0200
commit5393bff075e8ff9edefe0752dffbc3e15a8bc773 (patch)
tree41d2d0e96ee19a64b727d0bc446d9ce2612d8064 /util
parentb1c7b93139f52acd11ac22494b06a3678135ffdc (diff)
downloadprosody-5393bff075e8ff9edefe0752dffbc3e15a8bc773.tar.gz
prosody-5393bff075e8ff9edefe0752dffbc3e15a8bc773.zip
util.dependencies: Deprecate support for Lua 5.1, this is your final warning
Diffstat (limited to 'util')
-rw-r--r--util/dependencies.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua
index d7836404..7ecbf797 100644
--- a/util/dependencies.lua
+++ b/util/dependencies.lua
@@ -155,7 +155,7 @@ local function log_warnings()
if _VERSION > "Lua 5.4" then
prosody.log("warn", "Support for %s is experimental, please report any issues", _VERSION);
elseif _VERSION < "Lua 5.2" then
- prosody.log("warn", "%s has several issues and support is being phased out, consider upgrading", _VERSION);
+ prosody.log("warn", "%s support is deprecated, upgrade as soon as possible", _VERSION);
end
local ssl = softreq"ssl";
if ssl then