From 5e776540543028aed2612a9e5b5a5c7516e5b050 Mon Sep 17 00:00:00 2001 From: Julian Rother <julian@cccv.de> Date: Mon, 6 Dec 2021 18:55:08 +0100 Subject: [PATCH] create_debian-changelog-from-git.py: Consider all tags as release tags --- create_debian-changelog-from-git.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/create_debian-changelog-from-git.py b/create_debian-changelog-from-git.py index 61f5dde..d1d68e8 100755 --- a/create_debian-changelog-from-git.py +++ b/create_debian-changelog-from-git.py @@ -82,8 +82,8 @@ if __name__ == '__main__': version_commits = {} for tag in repo.tags: - if not re.fullmatch('v[0-9]+[.][0-9]+[.][0-9]+.*', tag.name): - continue + #if not re.fullmatch('v[0-9]+[.][0-9]+[.][0-9]+.*', tag.name): + # continue if isinstance(tag.object, git.TagObject): commit_hexsha = tag.object.object.hexsha else: -- GitLab