Set major to year if previous major was bigger

This commit is contained in:
Peter J. Holzer 2025-02-03 10:00:32 +01:00 committed by Peter J. Holzer
parent 3548a55cce
commit a4164eccb6
1 changed files with 2 additions and 0 deletions

2
tagger
View File

@ -45,6 +45,8 @@ if need_tag or args.force:
if year % m >= max_major:
major = str(year % m)
break
else:
major = str(year)
version.append(major)
version.append(today.strftime("%m"))
if args.day_always: