aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_version.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-12-10 15:44:03 +0000
committerMatthew Wild <mwild1@gmail.com>2008-12-10 15:44:03 +0000
commitd3ad4a5123335a00f3d9d921c798cdb8e9923ace (patch)
treeec75db62595fe2b0c0283f84a1c804f3f275eba6 /plugins/mod_version.lua
parent753ab685818da815d7ffba71492b48985d67709c (diff)
downloadprosody-d3ad4a5123335a00f3d9d921c798cdb8e9923ace.tar.gz
prosody-d3ad4a5123335a00f3d9d921c798cdb8e9923ace.zip
0.1 -> 0.2
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 0b7ebfaa..c263031a 100644
--- a/plugins/mod_version.lua
+++ b/plugins/mod_version.lua
@@ -1,4 +1,4 @@
--- Prosody IM v0.1
+-- Prosody IM v0.2
-- Copyright (C) 2008 Matthew Wild
-- Copyright (C) 2008 Waqas Hussain
--
@@ -31,7 +31,7 @@ local function handle_version_request(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.1"):up()
+ :tag("version"):text("0.2"):up()
:tag("os"):text("the best operating system ever!"));
end
end