Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stevedonovan/Penlight.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lua/pl/xml.lua')
-rw-r--r--lua/pl/xml.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/lua/pl/xml.lua b/lua/pl/xml.lua
index c593738..7956de9 100644
--- a/lua/pl/xml.lua
+++ b/lua/pl/xml.lua
@@ -51,6 +51,16 @@ local pcall = pcall
local require = require
+utils.raise_deprecation {
+ source = "Penlight " .. utils._VERSION,
+ message = "the contents of module 'pl.xml' has been deprecated, please use a more specialized library instead",
+ version_removed = "2.0.0",
+ deprecated_after = "1.11.0",
+ no_trace = true,
+}
+
+
+
local _M = {}
local Doc = { __type = "doc" };
Doc.__index = Doc;