summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG6
-rw-r--r--src/connection.py2
2 files changed, 4 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 0769a63e..6b4e8f53 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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)