mod_component: Vastly reduce the code, having split most of it to where it should...
[prosody.git] / plugins / mod_version.lua
index e577c6f8e6e0ababa96785b8bab5616c6efc55f7..2abf534f07aa7e848a777f7bcb69690d7a83126f 100644 (file)
@@ -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);