Skip to content

Commit

Permalink
Add v prefix when getting latest version (#327)
Browse files Browse the repository at this point in the history
  • Loading branch information
TwistedTwigleg authored Jan 27, 2023
1 parent fde7f34 commit d17bdf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/update_semantic_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def main():
continue

if (highest[0] != 0 and highest[1] != 0 and highest[2] != 0):
print(f"{highest[0]}.{highest[1]}.{highest[2]}")
print(f"v{highest[0]}.{highest[1]}.{highest[2]}")
sys.exit(0)
else:
sys.exit(-1)
Expand Down

0 comments on commit d17bdf5

Please sign in to comment.