summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG5
-rw-r--r--src/multiuserchat.py2
2 files changed, 5 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index be3146eb..a2d87885 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,7 +2,10 @@ This file describes the new features in each poezio release.
For more detailed changelog, see the roadmap:
http://codingteam.net/project/poezio/roadmap
-* Poezio 0.6 - dev
+* Poezio 0.6.1 - 13 Jun 2010
+- Enable tracebacks
+
+* Poezio 0.6 - 13 Jun 2010
- Private messages are handled
- Muc error messages are displayed
- Nickname auto-completion
diff --git a/src/multiuserchat.py b/src/multiuserchat.py
index 9a12bd37..cd004709 100644
--- a/src/multiuserchat.py
+++ b/src/multiuserchat.py
@@ -308,7 +308,7 @@ class MultiUserChat(object):
qp = iq_obj.getTag('query')
if config.get('send_poezio_info', 'true') == 'true':
qp.setTagData('name', 'Poezio')
- qp.setTagData('version', '0.6')
+ qp.setTagData('version', '0.6.1')
else:
qp.setTagData('name', 'Unknown')
qp.setTagData('version', 'Unknown')