Cc: mesa-stable
Signed-off-by: Eric Engestrom <eric@engestrom.ch>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5833>
import datetime
import os
import pathlib
+import subprocess
import sys
import textwrap
import typing
except:
print(exceptions.text_error_template().render())
+ subprocess.run(['git', 'add', final])
+ subprocess.run(['git', 'commit', '-m',
+ f'docs: add release notes for {this_version}'])
+
if __name__ == "__main__":
loop = asyncio.get_event_loop()
The release notes are completely generated by the
``bin/gen_release_notes.py`` script. Simply run this script before
-bumping the version, and commit the results. The only thing left to do
+bumping the version. The only thing left to do
is add the sha256 sums.
Increment the version contained in the file VERSION at Mesa's top-level,