Poezio 0.11 release

This commit is contained in:
mathieui 2017-01-31 00:17:32 +01:00
parent 806485dbe0
commit 49b785d5be
4 changed files with 14 additions and 5 deletions

View file

@ -4,6 +4,15 @@ https://dev.louiz.org/projects/poezio/roadmap
* Poezio 1.0 - dev
* Poezio 0.11
- Implementation of XEP-0380
- Docker images
- Improved documentation
- GPG plugin fixes
- Added manpages for the utility scripts
- Misc fixes
* Poezio 0.10
- A lot of cleanup and refactor in order to use cython on the codebase

View file

@ -53,9 +53,9 @@ copyright = '%s, Mathieu Pasquet - Florent Le Coz' % time.strftime('%Y')
# built documents.
#
# The short X.Y version.
version = '1.0'
version = '0.11'
# The full version, including alpha/beta/rc tags.
release = '1.0-dev'
release = '0.11'
add_function_parentheses = True

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="1.0-dev")
default="0.11")
options = parser.parse_args()
return options

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="1.0" + version,
version="0.11",
description="A console XMPP client",
long_description=LONG_DESCRIPTION,
ext_modules=[module_poopt],
@ -104,7 +104,7 @@ setup(name="poezio",
('share/poezio/', ['README.rst', 'COPYING', 'CHANGELOG'])]
+ find_doc('share/doc/poezio/source', 'source')
+ find_doc('share/doc/poezio/html', 'build/html')),
install_requires=['slixmpp', 'aiodns'],
install_requires=['slixmpp>=1.2.4', 'aiodns'],
extras_require={'OTR plugin': 'python-potr>=1.0',
'Screen autoaway plugin': 'pyinotify==0.9.4'})