mirror of
https://github.com/bellingcat/auto-archiver.git
synced 2026-06-11 20:58:29 +03:00
14 lines
553 B
Python
14 lines
553 B
Python
""" Version information for the auto_archiver package.
|
|
TODO: This should be generated by the build system for single point of change.
|
|
"""
|
|
_MAJOR = "0"
|
|
_MINOR = "13"
|
|
# On main and in a nightly release the patch should be one ahead of the last
|
|
# released build.
|
|
_PATCH = "1"
|
|
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
|
|
# https://semver.org/#is-v123-a-semantic-version for the semantics.
|
|
_SUFFIX = ""
|
|
|
|
VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR)
|
|
__version__ = "{0}.{1}.{2}{3}".format(_MAJOR, _MINOR, _PATCH, _SUFFIX) |