bugfix: agrego guion entre version y nombre de entorno

This commit is contained in:
Jonathan Teran
2025-12-04 10:15:32 -03:00
parent a2475195b2
commit 053b8b102b
+1 -1
View File
@@ -104,4 +104,4 @@ class TagCommand(Command):
elif increment == SEMVER_PATCH: elif increment == SEMVER_PATCH:
patch += 1 patch += 1
return None if increment == SEMVER_SKIP else f"v{major}.{minor}.{patch}{suffix}" return None if increment == SEMVER_SKIP else f"v{major}.{minor}.{patch}-{suffix}"