Next version is 0.13

This commit is contained in:
mathieui 2018-08-14 20:01:54 +02:00
parent c0ffc4b15c
commit d1b624753b
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3
4 changed files with 6 additions and 4 deletions

View file

@ -2,6 +2,8 @@ This file describes the new features in each poezio release.
For more detailed changelog, see the roadmap: For more detailed changelog, see the roadmap:
https://dev.louiz.org/projects/poezio/roadmap https://dev.louiz.org/projects/poezio/roadmap
* Poezio 0.13 - dev
* Poezio 0.12 * Poezio 0.12
- Require Python 3.5, to add support for Python 3.7, use proper async - Require Python 3.5, to add support for Python 3.7, use proper async

View file

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

View file

@ -38,6 +38,6 @@ def parse_args(CONFIG_PATH: Path):
dest="version", dest="version",
help=SUPPRESS, help=SUPPRESS,
metavar="VERSION", metavar="VERSION",
default="0.12") default="0.13-dev")
options = parser.parse_args() options = parser.parse_args()
return options return options

View file

@ -89,7 +89,7 @@ with open('README.rst', encoding='utf-8') as readme_fd:
LONG_DESCRIPTION = readme_fd.read() LONG_DESCRIPTION = readme_fd.read()
setup(name="poezio", setup(name="poezio",
version="0.12", version="0.13" + version,
description="A console XMPP client", description="A console XMPP client",
long_description=LONG_DESCRIPTION, long_description=LONG_DESCRIPTION,
ext_modules=[module_poopt], ext_modules=[module_poopt],