diff --git a/djrill/_version.py b/djrill/_version.py index 0a535b0..42838c5 100644 --- a/djrill/_version.py +++ b/djrill/_version.py @@ -1,5 +1,3 @@ -VERSION = (2, 0, 0, 'dev') # Remove the 'dev' component in release branches -__version__ = '.'.join([str(x) for x in VERSION[:3]]) # major.minor.patch -if len(VERSION) > 3: # x.y.z-pre.release (note the hyphen) - __version__ += '-' + '.'.join([str(x) for x in VERSION[3:]]) +VERSION = (2, 0, 'dev0') # Remove the 'dev' component in release branches +__version__ = '.'.join([str(x) for x in VERSION]) # major.minor.patch or major.minor.devN __minor_version__ = '.'.join([str(x) for x in VERSION[:2]]) # Sphinx's X.Y "version"