diff options
-rw-r--r-- | CHANGELOG | 5 | ||||
-rw-r--r-- | src/multiuserchat.py | 2 |
2 files changed, 5 insertions, 2 deletions
@@ -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') |