Bump dev version
This commit is contained in:
parent
f87ab6e39b
commit
d165f13a81
5 changed files with 14 additions and 6 deletions
|
@ -2,6 +2,8 @@ This file describes the new features in each poezio release.
|
|||
For more detailed changelog, see the roadmap:
|
||||
http://dev.louiz.org/projects/poezio/roadmap
|
||||
|
||||
* Poezio 0.8.3 - dev
|
||||
|
||||
* Poezio 0.8
|
||||
- Allow in-band password changing with /password
|
||||
- Force c2s encryption until configured otherwise
|
||||
|
|
|
@ -53,9 +53,9 @@ copyright = '%s, Mathieu Pasquet - Florent Le Coz' % time.strftime('%Y')
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '0.8'
|
||||
version = '0.8.3'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '0.8'
|
||||
release = '0.8.3-dev'
|
||||
|
||||
add_function_parentheses = True
|
||||
|
||||
|
|
|
@ -1,4 +1,10 @@
|
|||
#!/bin/sh
|
||||
|
||||
exec python3 -OO src/poezio.py -v 0.8 "$@"
|
||||
if [ -d "$PWD/.git" ]
|
||||
then
|
||||
args=$(git show --format='%h %ci' | head -n1)
|
||||
else
|
||||
args="0.8.3-dev"
|
||||
fi
|
||||
exec python3 -OO src/poezio.py -v "$args" "$@"
|
||||
|
||||
|
|
4
setup.py
4
setup.py
|
@ -13,7 +13,7 @@ if not os.path.exists(os.path.join(current_dir, 'src', 'default_config.cfg')):
|
|||
os.path.join(current_dir, 'src', 'default_config.cfg'))
|
||||
|
||||
setup(name="poezio",
|
||||
version="0.8",
|
||||
version="0.8.3-dev",
|
||||
description="A console XMPP client",
|
||||
long_description=
|
||||
"""
|
||||
|
@ -30,7 +30,7 @@ setup(name="poezio",
|
|||
maintainer = 'Mathieu Pasquet',
|
||||
maintainer_email = 'mathieui@mathieui.net',
|
||||
|
||||
classifiers = ['Development Status :: 5 - Production/Stable',
|
||||
classifiers = ['Development Status :: 2 - Pre-Alpha',
|
||||
'Environment :: Console :: Curses',
|
||||
'Intended Audience :: End Users/Desktop',
|
||||
'License :: OSI Approved :: zlib/libpng License',
|
||||
|
|
|
@ -20,7 +20,7 @@ def parse_args(CONFIG_PATH=''):
|
|||
parser.add_option("-d", "--debug", dest="debug",
|
||||
help="The file where debug will be written", metavar="DEBUG_FILE")
|
||||
parser.add_option("-v", "--version", dest="version",
|
||||
help=SUPPRESS, metavar="VERSION", default="0.8-dev")
|
||||
help=SUPPRESS, metavar="VERSION", default="0.8.3-dev")
|
||||
(options, args) = parser.parse_args()
|
||||
else:
|
||||
parser = ArgumentParser()
|
||||
|
|
Loading…
Reference in a new issue