Mesa (master): post_version.py: stop adding release candidates to the index and relnotes

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed May 13 22:14:47 UTC 2020


Module: Mesa
Branch: master
Commit: 445e559e35ae3151d7587f61310ec0fc25c90982
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=445e559e35ae3151d7587f61310ec0fc25c90982

Author: Eric Engestrom <eric at engestrom.ch>
Date:   Thu May  7 00:20:46 2020 +0200

post_version.py: stop adding release candidates to the index and relnotes

Closes: https://gitlab.freedesktop.org/mesa/mesa/issues/2870
Signed-off-by: Eric Engestrom <eric at engestrom.ch>
Reviewed-by: Dylan Baker <dylan at pnwbakers.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4929>

---

 bin/post_version.py | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/bin/post_version.py b/bin/post_version.py
index 446fae9880b..c55309d9387 100755
--- a/bin/post_version.py
+++ b/bin/post_version.py
@@ -134,12 +134,16 @@ def main() -> None:
     parser.add_argument('version', help="The released version.")
     args = parser.parse_args()
 
-    update_index(args.version)
-    update_release_notes(args.version)
     update_calendar(args.version)
+    done = 'update calendar'
+
+    if not is_release_candidate(args.version):
+        update_index(args.version)
+        update_release_notes(args.version)
+        done += ', add news item, and link releases notes'
+
     subprocess.run(['git', 'commit', '-m',
-                    'docs: update calendar, add news item, and link releases '
-                    f'notes for {args.version}'])
+                    f'docs: {done} for {args.version}'])
 
 
 if __name__ == "__main__":



More information about the mesa-commit mailing list