diff --git a/setup.py b/setup.py index 3cf8ed8..c4c3b1e 100755 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def get_version(): match = version_re.match(line[:-1]) if match: return match.groups()[0] - return '0.0' + return '0.0.0' class test(cmd.Command): diff --git a/src/semantic_version/__init__.py b/src/semantic_version/__init__.py index ee11a0d..097f02b 100644 --- a/src/semantic_version/__init__.py +++ b/src/semantic_version/__init__.py @@ -2,7 +2,7 @@ # Copyright (c) 2012 Raphaƫl Barrois -__version__ = '1.0.0-beta' +__version__ = '1.0.0' from .base import compare, match, Version, Spec