egl: drop unused _EGLDriver from WaitClient()
[mesa.git] / bin / gen_release_notes.py
index c72e440495bfc55c46f78c8847942e771182dd16..716f807b3174b9c288fc30adf83c10b25e07e720 100755 (executable)
@@ -25,6 +25,7 @@ import asyncio
 import datetime
 import os
 import pathlib
+import subprocess
 import sys
 import textwrap
 import typing
@@ -252,6 +253,10 @@ async def main() -> None:
         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()