Diff

util/dependencies.lua @ 10049:c523642ea293

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.
author Kim Alvefur <zash@zash.se>
date Wed, 19 Jun 2019 19:16:09 +0200
parent 9560:cb92e1c8b6db
child 10406:a7903de619b0
line wrap: on
line diff
--- 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";