0.9 Release

This commit is contained in:
mathieui 2015-07-31 21:35:02 +02:00
parent 3633072b36
commit 6820743033
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3
4 changed files with 7 additions and 4 deletions

View file

@ -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,

View file

@ -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

View file

@ -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],

View file

@ -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