Module: Mesa Branch: master Commit: c905e485936432e2db6d16403076761dd5d25d41 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=c905e485936432e2db6d16403076761dd5d25d41
Author: Eric Engestrom <[email protected]> Date: Wed Jun 10 19:50:31 2020 +0200 bin/gen_release_notes.py: drop new_features.txt when we release XX.Y.0 Otherwise, we (rightfully) get a warning about having new features in a bugfix release. Signed-off-by: Eric Engestrom <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5416> --- bin/gen_release_notes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/gen_release_notes.py b/bin/gen_release_notes.py index 3a580a406ca..c72e440495b 100755 --- a/bin/gen_release_notes.py +++ b/bin/gen_release_notes.py @@ -211,6 +211,7 @@ def get_features(is_point_release: bool) -> typing.Generator[str, None, None]: yield line else: yield "None" + p.unlink() else: yield "None" _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
