From 053b8b102b0c1548890adfc61e90477620d5230f Mon Sep 17 00:00:00 2001 From: Jonathan Teran Date: Thu, 4 Dec 2025 10:15:32 -0300 Subject: [PATCH] bugfix: agrego guion entre version y nombre de entorno --- src/git_flow/command/tag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git_flow/command/tag.py b/src/git_flow/command/tag.py index 4fcac5c..3d3d862 100644 --- a/src/git_flow/command/tag.py +++ b/src/git_flow/command/tag.py @@ -104,4 +104,4 @@ class TagCommand(Command): elif increment == SEMVER_PATCH: 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}"