olmocr/olmocr/version.py

12 lines
407 B
Python
Raw Normal View History

2024-09-17 07:53:43 -07:00
_MAJOR = "0"
2025-07-23 15:37:08 +00:00
_MINOR = "2"
2024-09-17 07:53:43 -07:00
# On main and in a nightly release the patch should be one ahead of the last
# released build.
2025-08-04 17:56:01 +00:00
_PATCH = "2"
2024-09-17 07:53:43 -07:00
# 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)