diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-01-30 17:40:25 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-01-30 17:40:25 +0000 |
commit | f2d020191f5a78336f456263b868228ad53236db (patch) | |
tree | 74f934743ae8ea59839d312a647a3a6967a6b3c0 /plugins/mod_version.lua | |
parent | bf3b96204df926c023d41aa3b9853e526e27d106 (diff) | |
download | prosody-f2d020191f5a78336f456263b868228ad53236db.tar.gz prosody-f2d020191f5a78336f456263b868228ad53236db.zip |
0.2->0.3
Diffstat (limited to 'plugins/mod_version.lua')
-rw-r--r-- | plugins/mod_version.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_version.lua b/plugins/mod_version.lua index 2c8df518..2d1e381e 100644 --- a/plugins/mod_version.lua +++ b/plugins/mod_version.lua @@ -1,4 +1,4 @@ --- Prosody IM v0.2 +-- Prosody IM v0.3 -- Copyright (C) 2008 Matthew Wild -- Copyright (C) 2008 Waqas Hussain -- @@ -18,7 +18,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.2"):up() + :tag("version"):text("0.3"):up() :tag("os"):text("the best operating system ever!")); end end); |