diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-08 23:48:32 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-08 23:48:32 +0100 |
commit | 8fad2f464a8049c047a5bf31e377398b79871096 (patch) | |
tree | 7de906ef068de5b5320a37e207f1d325a4f957c4 | |
parent | 7fadb35fe2e7932a0a4aa6a8184ab6b186669edc (diff) | |
download | poezio-8fad2f464a8049c047a5bf31e377398b79871096.tar.gz poezio-8fad2f464a8049c047a5bf31e377398b79871096.tar.bz2 poezio-8fad2f464a8049c047a5bf31e377398b79871096.tar.xz poezio-8fad2f464a8049c047a5bf31e377398b79871096.zip |
Update version to 0.7.2
-rw-r--r-- | CHANGELOG | 6 | ||||
-rw-r--r-- | src/connection.py | 2 |
2 files changed, 4 insertions, 4 deletions
@@ -3,7 +3,7 @@ For more detailed changelog, see the roadmap: http://dev.louiz.org/project/poezio/roadmap -* Poezio 0.7.2 - dev +* Poezio 0.7.2 - 08 Nov 2011 - Huge speed improvements in both memory usage, text refresh speed and interface resize. - Chatstate notifications (in private AND in MUCs) @@ -23,13 +23,13 @@ http://dev.louiz.org/project/poezio/roadmap - a *lot* of bugfixes -* Poezio 0.7.1 - 2 Feb 2010 +* Poezio 0.7.1 - 2 Feb 2011 - /status command to globally change the status - /win command now accepts part of tab name as argument - bugfixes -* Poezio 0.7 - 14 jan 2010 +* Poezio 0.7 - 14 jan 2011 Codename ”Koshie & Mathieui” - Library changed from xmpppy to SleekXMPP - Python 3 only diff --git a/src/connection.py b/src/connection.py index f407dfe9..19b2c5e4 100644 --- a/src/connection.py +++ b/src/connection.py @@ -51,7 +51,7 @@ class Connection(sleekxmpp.ClientXMPP): self.register_plugin('xep_0085') if config.get('send_poezio_info', 'true') == 'true': info = {'name':'poezio', - 'version':'0.7.2-dev'} + 'version':'0.7.2'} if config.get('send_os_info', 'true') == 'true': info['os'] = common.get_os_info() self.register_plugin('xep_0092', pconfig=info) |