Skip to content

Commit

Permalink
fix SemVer definition
Browse files Browse the repository at this point in the history
  • Loading branch information
AlvinSchiller committed Dec 13, 2023
1 parent 40c00cb commit aa372c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jukebox/jukebox/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
__version_info__ = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)

if VERSION_EXTRA:
__version__ = "%s.%s" % (__version__, VERSION_EXTRA)
__version__ = "%s-%s" % (__version__, VERSION_EXTRA)
__version_info__ = (VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH, VERSION_EXTRA)


Expand Down

0 comments on commit aa372c3

Please sign in to comment.