summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/source/conf.py4
-rw-r--r--poezio/args.py2
-rwxr-xr-xsetup.py2
3 files changed, 4 insertions, 4 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 4a402e5f..ff3a9031 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -53,9 +53,9 @@ copyright = '%s, Mathieu Pasquet - Florent Le Coz' % time.strftime('%Y')
# built documents.
#
# The short X.Y version.
-version = '0.11'
+version = '1.0'
# The full version, including alpha/beta/rc tags.
-release = '0.11'
+release = '1.0-dev'
add_function_parentheses = True
diff --git a/poezio/args.py b/poezio/args.py
index c5c15b40..63e77927 100644
--- a/poezio/args.py
+++ b/poezio/args.py
@@ -23,6 +23,6 @@ def parse_args(CONFIG_PATH=''):
metavar="CONFIG_FILE")
parser.add_argument("-v", "--version", dest="version",
help=SUPPRESS, metavar="VERSION",
- default="0.11")
+ default="1.0-dev")
options = parser.parse_args()
return options
diff --git a/setup.py b/setup.py
index 2270c41c..df03bcd8 100755
--- a/setup.py
+++ b/setup.py
@@ -65,7 +65,7 @@ with open('README.rst', encoding='utf-8') as readme_fd:
LONG_DESCRIPTION = readme_fd.read()
setup(name="poezio",
- version="0.11",
+ version="1.0" + version,
description="A console XMPP client",
long_description=LONG_DESCRIPTION,
ext_modules=[module_poopt],