Skip to content

Commit d17bdf5

Browse files
Add v prefix when getting latest version (#327)
1 parent fde7f34 commit d17bdf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/update_semantic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def main():
4747
continue
4848

4949
if (highest[0] != 0 and highest[1] != 0 and highest[2] != 0):
50-
print(f"{highest[0]}.{highest[1]}.{highest[2]}")
50+
print(f"v{highest[0]}.{highest[1]}.{highest[2]}")
5151
sys.exit(0)
5252
else:
5353
sys.exit(-1)

0 commit comments

Comments
 (0)