Update stuff to say 1.0-dev
This commit is contained in:
parent
cecfa5f97c
commit
c8b4d20a14
3 changed files with 4 additions and 4 deletions
|
@ -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.9'
|
version = '1.0'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '0.9'
|
release = '1.0-dev'
|
||||||
|
|
||||||
add_function_parentheses = True
|
add_function_parentheses = True
|
||||||
|
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -65,7 +65,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="0.9",
|
version="1.0" + version,
|
||||||
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],
|
||||||
|
|
|
@ -23,6 +23,6 @@ def parse_args(CONFIG_PATH=''):
|
||||||
metavar="CONFIG_FILE")
|
metavar="CONFIG_FILE")
|
||||||
parser.add_argument("-v", "--version", dest="version",
|
parser.add_argument("-v", "--version", dest="version",
|
||||||
help=SUPPRESS, metavar="VERSION",
|
help=SUPPRESS, metavar="VERSION",
|
||||||
default="0.9")
|
default="1.0-dev")
|
||||||
options = parser.parse_args()
|
options = parser.parse_args()
|
||||||
return options
|
return options
|
||||||
|
|
Loading…
Reference in a new issue