Skip to content

Commit

Permalink
src
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasByr committed Jul 28, 2023
1 parent 622b0f7 commit 004b97a
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions src/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,12 @@
"""Define python-app version information."""

# We follow Semantic Versioning (https://semver.org/)
_MAJOR_VERSION = '0'
_MINOR_VERSION = '1'
_PATCH_VERSION = '0'

# When building releases, we can update this value on the release branch to
# reflect the current release candidate ('rc0', 'rc1') or, finally, the official
# stable release (indicated by `_VERSION_SUFFIX = ''`). Outside the context of a
# release branch, the current version is by default assumed to be a
# 'development' version, labeled 'dev'.
_VERSION_SUFFIX = 'dev'

# Example, '0.4.0-dev'
__version__ = '.'.join([
_MAJOR_VERSION,
_MINOR_VERSION,
_PATCH_VERSION,
])
if _VERSION_SUFFIX:
__version__ = f'{__version__}-{_VERSION_SUFFIX}'
__version__ = '0.1.1'

0 comments on commit 004b97a

Please sign in to comment.