summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2011-11-09 01:35:27 +0100
committerFlorent Le Coz <louiz@louiz.org>2011-11-09 01:35:27 +0100
commitcfb074c17875e389b894cdc3447773a1ead928ca (patch)
tree9f8bd6d544af92ba34fd48d022ea3b1cb0f42718
parent4a961c0dc6ec670d064fa9319d33ef04a536f6c6 (diff)
downloadpoezio-cfb074c17875e389b894cdc3447773a1ead928ca.tar.gz
poezio-cfb074c17875e389b894cdc3447773a1ead928ca.tar.bz2
poezio-cfb074c17875e389b894cdc3447773a1ead928ca.tar.xz
poezio-cfb074c17875e389b894cdc3447773a1ead928ca.zip
Set version to 0.7.5 and update the changelog
-rw-r--r--CHANGELOG2
-rw-r--r--src/connection.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 6b4e8f53..2361e506 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,8 @@ This file describes the new features in each poezio release.
For more detailed changelog, see the roadmap:
http://dev.louiz.org/project/poezio/roadmap
+* Poezio 0.7.5 - dev
+- Plugin system
* Poezio 0.7.2 - 08 Nov 2011
- Huge speed improvements in both memory usage, text
diff --git a/src/connection.py b/src/connection.py
index 19b2c5e4..dfc8ba85 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'}
+ 'version':'0.7.5-dev'}
if config.get('send_os_info', 'true') == 'true':
info['os'] = common.get_os_info()
self.register_plugin('xep_0092', pconfig=info)