[llvm-branch-commits] [llvm] 07c2140 - [MLGO][Infra] Add mlgo-utils to bump-version script (#100186)

Tobias Hieta via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Fri Jul 26 05:02:52 PDT 2024


Author: Aiden Grossman
Date: 2024-07-26T13:57:46+02:00
New Revision: 07c2140ed9a17a4c3485ad8dba7d8d0c78593ab0

URL: https://github.com/llvm/llvm-project/commit/07c2140ed9a17a4c3485ad8dba7d8d0c78593ab0
DIFF: https://github.com/llvm/llvm-project/commit/07c2140ed9a17a4c3485ad8dba7d8d0c78593ab0.diff

LOG: [MLGO][Infra] Add mlgo-utils to bump-version script (#100186)

This patch adds support in the bump-version script for bumping the
version of the mlgo-utils package. This should hopefully streamline the
processor for that with the rest of the project and prevent having to
manually update this package individually.

Added: 
    

Modified: 
    llvm/utils/release/bump-version.py

Removed: 
    


################################################################################
diff  --git a/llvm/utils/release/bump-version.py b/llvm/utils/release/bump-version.py
index b1799cba9363e..5db62e88fec1d 100755
--- a/llvm/utils/release/bump-version.py
+++ b/llvm/utils/release/bump-version.py
@@ -188,6 +188,11 @@ def process_line(self, line: str) -> str:
             "llvm/utils/lit/lit/__init__.py",
             LitProcessor(args),
         ),
+        # mlgo-utils configuration
+        (
+            "llvm/utils/mlgo-utils/mlgo/__init__.py",
+            LitProcessor(args),
+        ),
         # GN build system
         (
             "llvm/utils/gn/secondary/llvm/version.gni",


        


More information about the llvm-branch-commits mailing list