We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d227b5 commit 50b025cCopy full SHA for 50b025c
utilities/release-notes.py
@@ -9,7 +9,7 @@
9
output_file = sys.argv[1]
10
11
with open(output_file, 'w') as fp:
12
- tags = subprocess.check_output(['git', 'tag', '--sort=taggerdate']).decode('utf-8')
+ tags = subprocess.check_output(['git', 'tag', '--sort=creatordate']).decode('utf-8')
13
recent_tags = tags.split()[-2:]
14
previous_tag = recent_tags[0]
15
current_tag = recent_tags[1]
0 commit comments