summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG9
-rw-r--r--doc/source/conf.py4
-rw-r--r--poezio/args.py2
-rwxr-xr-xsetup.py4
4 files changed, 14 insertions, 5 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 5909e361..d00ed5a3 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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
diff --git a/doc/source/conf.py b/doc/source/conf.py
index ff3a9031..4a402e5f 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -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
diff --git a/poezio/args.py b/poezio/args.py
index 63e77927..c5c15b40 100644
--- a/poezio/args.py
+++ b/poezio/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="1.0-dev")
+ default="0.11")
options = parser.parse_args()
return options
diff --git a/setup.py b/setup.py
index 207ec1d3..2270c41c 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="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'})