Release poezio 0.12
This commit is contained in:
parent
fe7d68cad1
commit
c0ffc4b15c
3 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@ 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 1.0 - dev
|
* 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
|
||||||
functions, use typing, italics formatting, FIXME
|
functions, use typing, italics formatting, FIXME
|
||||||
|
|
|
@ -38,6 +38,6 @@ def parse_args(CONFIG_PATH: Path):
|
||||||
dest="version",
|
dest="version",
|
||||||
help=SUPPRESS,
|
help=SUPPRESS,
|
||||||
metavar="VERSION",
|
metavar="VERSION",
|
||||||
default="1.0-dev")
|
default="0.12")
|
||||||
options = parser.parse_args()
|
options = parser.parse_args()
|
||||||
return options
|
return options
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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="1.0" + version,
|
version="0.12",
|
||||||
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],
|
||||||
|
|
Loading…
Reference in a new issue