diff options
author | mathieui <mathieui@mathieui.net> | 2018-08-13 22:56:06 +0200 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2018-08-13 22:56:06 +0200 |
commit | c0ffc4b15c761527981f80a1626534305feb6133 (patch) | |
tree | e31c41f198ee227cfe32b205cc412e1d7a0c59f3 | |
parent | fe7d68cad113652c1ec8b4186e0c0c111a9fbcf2 (diff) | |
download | poezio-c0ffc4b15c761527981f80a1626534305feb6133.tar.gz poezio-c0ffc4b15c761527981f80a1626534305feb6133.tar.bz2 poezio-c0ffc4b15c761527981f80a1626534305feb6133.tar.xz poezio-c0ffc4b15c761527981f80a1626534305feb6133.zip |
Release poezio 0.12v0.12
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | poezio/args.py | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -2,7 +2,7 @@ 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 1.0 - dev +* Poezio 0.12 - Require Python 3.5, to add support for Python 3.7, use proper async functions, use typing, italics formatting, FIXME diff --git a/poezio/args.py b/poezio/args.py index 31525bb2..24025afc 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="1.0-dev") + default="0.12") options = parser.parse_args() return options @@ -89,7 +89,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.12", description="A console XMPP client", long_description=LONG_DESCRIPTION, ext_modules=[module_poopt], |