aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_version.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-03-20 20:16:25 +0000
committerMatthew Wild <mwild1@gmail.com>2009-03-20 20:16:25 +0000
commitc80f91dc0233276fcf112c54c6b7753dd68af354 (patch)
tree4d6a6c249ba191e7713af4016661fa467fb52cfa /plugins/mod_version.lua
parentd2ebe25dc579fb0ab21e411518c50eee1fae0f99 (diff)
downloadprosody-c80f91dc0233276fcf112c54c6b7753dd68af354.tar.gz
prosody-c80f91dc0233276fcf112c54c6b7753dd68af354.zip
0.3->0.4
Diffstat (limited to 'plugins/mod_version.lua')
-rw-r--r--plugins/mod_version.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_version.lua b/plugins/mod_version.lua
index e577c6f8..2abf534f 100644
--- a/plugins/mod_version.lua
+++ b/plugins/mod_version.lua
@@ -1,4 +1,4 @@
--- Prosody IM v0.3
+-- Prosody IM v0.4
-- Copyright (C) 2008-2009 Matthew Wild
-- Copyright (C) 2008-2009 Waqas Hussain
--
@@ -35,7 +35,7 @@ module:add_iq_handler({"c2s", "s2sin"}, xmlns_version, function(session, stanza)
if stanza.attr.type == "get" then
session.send(st.reply(stanza):query(xmlns_version)
:tag("name"):text("Prosody"):up()
- :tag("version"):text("0.3"):up()
+ :tag("version"):text("0.4"):up()
:tag("os"):text(version));
end
end);