Skip to content

Commit

Permalink
add semver ref to version.py
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvinSchiller committed Dec 19, 2023
1 parent a44e944 commit e5d3319
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/jukebox/jukebox/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
VERSION_PATCH = 0
VERSION_EXTRA = "alpha"

# build a version string in compliance with the SemVer specification
# https://semver.org/#semantic-versioning-specification-semver
__version__ = '%i.%i.%i' % (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)
__version_info__ = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)

Expand Down

0 comments on commit e5d3319

Please sign in to comment.