Skip to content

Commit

Permalink
releasenotes: fix for first tag is beta
Browse files Browse the repository at this point in the history
  • Loading branch information
mara004 committed May 2, 2022
1 parent 6fdc83a commit c0c4ffa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utilities/mk_releasenotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def get_tag(TagsList, n_descends, skip_beta=False):
i = 0
for line in TagsList:
tag = line.split('/')[-1].strip()
if skip_beta and 'b' in tag:
if skip_beta and i > 0 and 'b' in tag:
continue
if i >= n_descends:
break
Expand Down

0 comments on commit c0c4ffa

Please sign in to comment.