Skip to content

Commit

Permalink
Fix to version number extension format.
Browse files Browse the repository at this point in the history
  • Loading branch information
lumip committed Dec 1, 2022
1 parent 3fd8f19 commit 7e7566e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion twinify/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@
PATCH_VERSION = 0
EXT_VERSION = ""

VERSION = f"{MAJOR_VERSION}.{MINOR_VERSION}.{PATCH_VERSION}-{EXT_VERSION}"
EXT_VERSION_SUFFIX = f"-{EXT_VERSION}" if len(EXT_VERSION) > 0 else ""

VERSION = f"{MAJOR_VERSION}.{MINOR_VERSION}.{PATCH_VERSION}{EXT_VERSION_SUFFIX}"

0 comments on commit 7e7566e

Please sign in to comment.