summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2015-07-31 21:35:02 +0200
committermathieui <mathieui@mathieui.net>2015-07-31 21:35:02 +0200
commit682074303330254ae1a349a7f3a337122de4fe30 (patch)
tree6d83a3ba7d66c69ea9f0972101e5cb8e836a7e8f
parent3633072b365ae858370c5c8e9c17708f255f2dc4 (diff)
downloadpoezio-682074303330254ae1a349a7f3a337122de4fe30.tar.gz
poezio-682074303330254ae1a349a7f3a337122de4fe30.tar.bz2
poezio-682074303330254ae1a349a7f3a337122de4fe30.tar.xz
poezio-682074303330254ae1a349a7f3a337122de4fe30.zip
0.9 Releasev0.9
-rw-r--r--CHANGELOG5
-rw-r--r--doc/source/conf.py2
-rwxr-xr-xsetup.py2
-rw-r--r--src/args.py2
4 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 7ea563ff..cae545f3 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://dev.louiz.org/projects/poezio/roadmap
-* Poezio 0.9 - dev
+* Poezio 1.0 - dev
+
+
+* Poezio 0.9
- Use slixmpp instead of sleekxmpp, remove threads and locks
- Require python 3.4 for the input handling, event loop, xml parser,
diff --git a/doc/source/conf.py b/doc/source/conf.py
index a7a100be..a6a77777 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -55,7 +55,7 @@ copyright = '%s, Mathieu Pasquet - Florent Le Coz' % time.strftime('%Y')
# The short X.Y version.
version = '0.9'
# The full version, including alpha/beta/rc tags.
-release = '0.9-dev'
+release = '0.9'
add_function_parentheses = True
diff --git a/setup.py b/setup.py
index 5ea97cdc..289d4286 100755
--- a/setup.py
+++ b/setup.py
@@ -65,7 +65,7 @@ with open('README.rst', encoding='utf-8') as readme_fd:
LONG_DESCRIPTION = readme_fd.read()
setup(name="poezio",
- version="0.9" + version,
+ version="0.9",
description="A console XMPP client",
long_description=LONG_DESCRIPTION,
ext_modules=[module_poopt],
diff --git a/src/args.py b/src/args.py
index 8b1ebbbd..6d381e67 100644
--- a/src/args.py
+++ b/src/args.py
@@ -23,6 +23,6 @@ def parse_args(CONFIG_PATH=''):
metavar="CONFIG_FILE")
parser.add_argument("-v", "--version", dest="version",
help=SUPPRESS, metavar="VERSION",
- default="0.9-dev")
+ default="0.9")
options = parser.parse_args()
return options