File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ updates:
1818 schedule :
1919 interval : " daily"
2020 commit-message :
21- prefix : clang-tools
21+ prefix : build
2222 groups :
2323 clang-tools :
2424 patterns :
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ def get_version_from_dependency(tool: str) -> Optional[str]:
3232DEFAULT_CLANG_TIDY_VERSION = get_version_from_dependency ("clang-tidy" )
3333
3434
35+ # https://pypi.org/pypi/clang-format/json
3536CLANG_FORMAT_VERSIONS = [
3637 "6.0.1" ,
3738 "7.1.0" ,
@@ -98,8 +99,10 @@ def get_version_from_dependency(tool: str) -> Optional[str]:
9899 "20.1.7" ,
99100 "20.1.8" ,
100101 "21.1.0" ,
102+ "21.1.1" ,
101103]
102104
105+ # https://pypi.org/pypi/clang-tidy/json
103106CLANG_TIDY_VERSIONS = [
104107 "13.0.1.1" ,
105108 "14.0.6" ,
@@ -113,6 +116,7 @@ def get_version_from_dependency(tool: str) -> Optional[str]:
113116 "19.1.0.1" ,
114117 "20.1.0" ,
115118 "21.1.0" ,
119+ "21.1.1" ,
116120]
117121
118122
Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ classifiers = [
3434dependencies = [
3535 " tomli>=1.1.0; python_version < '3.11'" ,
3636 " setuptools>=45.0.0" , # Required for pkg_resources in clang-tidy
37- " clang-format==21.1.0 " ,
38- " clang-tidy==21.1.0 " ,
37+ " clang-format==21.1.1 " ,
38+ " clang-tidy==21.1.1 " ,
3939]
4040dynamic = [" version" ]
4141
You can’t perform that action at this time.
0 commit comments