Skip to content
Snippets Groups Projects
Commit 5e776540 authored by Julian's avatar Julian
Browse files

create_debian-changelog-from-git.py: Consider all tags as release tags

parent 6b34ade4
No related branches found
No related tags found
No related merge requests found
...@@ -82,8 +82,8 @@ if __name__ == '__main__': ...@@ -82,8 +82,8 @@ if __name__ == '__main__':
version_commits = {} version_commits = {}
for tag in repo.tags: for tag in repo.tags:
if not re.fullmatch('v[0-9]+[.][0-9]+[.][0-9]+.*', tag.name): #if not re.fullmatch('v[0-9]+[.][0-9]+[.][0-9]+.*', tag.name):
continue # continue
if isinstance(tag.object, git.TagObject): if isinstance(tag.object, git.TagObject):
commit_hexsha = tag.object.object.hexsha commit_hexsha = tag.object.object.hexsha
else: else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment