summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2018-08-14 20:01:54 +0200
committermathieui <mathieui@mathieui.net>2018-08-14 20:01:54 +0200
commitd1b624753bb5371cf287cc9d86bb685593a99315 (patch)
treed4ebce85809c843a2a48d0af3724412f74ee30bf
parentc0ffc4b15c761527981f80a1626534305feb6133 (diff)
downloadpoezio-d1b624753bb5371cf287cc9d86bb685593a99315.tar.gz
poezio-d1b624753bb5371cf287cc9d86bb685593a99315.tar.bz2
poezio-d1b624753bb5371cf287cc9d86bb685593a99315.tar.xz
poezio-d1b624753bb5371cf287cc9d86bb685593a99315.zip
Next version is 0.13
-rw-r--r--CHANGELOG2
-rw-r--r--doc/source/conf.py4
-rw-r--r--poezio/args.py2
-rwxr-xr-xsetup.py2
4 files changed, 6 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 05d207ee..1923306f 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,8 @@ This file describes the new features in each poezio release.
For more detailed changelog, see the roadmap:
https://dev.louiz.org/projects/poezio/roadmap
+* Poezio 0.13 - dev
+
* Poezio 0.12
- Require Python 3.5, to add support for Python 3.7, use proper async
diff --git a/doc/source/conf.py b/doc/source/conf.py
index afdb5c56..0396e88f 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -53,9 +53,9 @@ copyright = '%s, Mathieu Pasquet - Florent Le Coz - Emmanuel Gil Peyrot' % time.
# built documents.
#
# The short X.Y version.
-version = '1.0'
+version = '0.13'
# The full version, including alpha/beta/rc tags.
-release = '1.0-dev'
+release = '0.13-dev'
add_function_parentheses = True
diff --git a/poezio/args.py b/poezio/args.py
index 24025afc..d0005d82 100644
--- a/poezio/args.py
+++ b/poezio/args.py
@@ -38,6 +38,6 @@ def parse_args(CONFIG_PATH: Path):
dest="version",
help=SUPPRESS,
metavar="VERSION",
- default="0.12")
+ default="0.13-dev")
options = parser.parse_args()
return options
diff --git a/setup.py b/setup.py
index 7dbca67f..079f4c5f 100755
--- a/setup.py
+++ b/setup.py
@@ -89,7 +89,7 @@ with open('README.rst', encoding='utf-8') as readme_fd:
LONG_DESCRIPTION = readme_fd.read()
setup(name="poezio",
- version="0.12",
+ version="0.13" + version,
description="A console XMPP client",
long_description=LONG_DESCRIPTION,
ext_modules=[module_poopt],