From 9799df2147df54e0bb52e75e07334a1277e86406 Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Fri, 7 Nov 2025 21:20:22 -0300 Subject: [PATCH] bugfix: arreglo generacion de links en changelog entries --- src/git_flow/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/git_flow/main.py b/src/git_flow/main.py index b1f5dd5..258e6c7 100755 --- a/src/git_flow/main.py +++ b/src/git_flow/main.py @@ -575,7 +575,7 @@ def get_changelog_content_lines(branch: str, target: str): commit_type = message[:index] commit_message = message[index+1:] - lines.append(f"- **{commit_type}**: {commit_message} por [{username}]({email}) ({commit})") + lines.append(f"- **{commit_type}**: {commit_message} [[{username}](mailto:{email})] ({commit})") return lines