Bump dev version

This commit is contained in:
mathieui 2014-02-22 14:27:31 +01:00
parent f87ab6e39b
commit d165f13a81
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3
5 changed files with 14 additions and 6 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:
http://dev.louiz.org/projects/poezio/roadmap http://dev.louiz.org/projects/poezio/roadmap
* Poezio 0.8.3 - dev
* Poezio 0.8 * Poezio 0.8
- Allow in-band password changing with /password - Allow in-band password changing with /password
- Force c2s encryption until configured otherwise - Force c2s encryption until configured otherwise

View file

@ -53,9 +53,9 @@ copyright = '%s, Mathieu Pasquet - Florent Le Coz' % time.strftime('%Y')
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.8' version = '0.8.3'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.8' release = '0.8.3-dev'
add_function_parentheses = True add_function_parentheses = True

View file

@ -1,4 +1,10 @@
#!/bin/sh #!/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" "$@"

View file

@ -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')) os.path.join(current_dir, 'src', 'default_config.cfg'))
setup(name="poezio", setup(name="poezio",
version="0.8", version="0.8.3-dev",
description="A console XMPP client", description="A console XMPP client",
long_description= long_description=
""" """
@ -30,7 +30,7 @@ setup(name="poezio",
maintainer = 'Mathieu Pasquet', maintainer = 'Mathieu Pasquet',
maintainer_email = 'mathieui@mathieui.net', maintainer_email = 'mathieui@mathieui.net',
classifiers = ['Development Status :: 5 - Production/Stable', classifiers = ['Development Status :: 2 - Pre-Alpha',
'Environment :: Console :: Curses', 'Environment :: Console :: Curses',
'Intended Audience :: End Users/Desktop', 'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: zlib/libpng License', 'License :: OSI Approved :: zlib/libpng License',

View file

@ -20,7 +20,7 @@ def parse_args(CONFIG_PATH=''):
parser.add_option("-d", "--debug", dest="debug", parser.add_option("-d", "--debug", dest="debug",
help="The file where debug will be written", metavar="DEBUG_FILE") help="The file where debug will be written", metavar="DEBUG_FILE")
parser.add_option("-v", "--version", dest="version", 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() (options, args) = parser.parse_args()
else: else:
parser = ArgumentParser() parser = ArgumentParser()