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:
18
18
schedule :
19
19
interval : " daily"
20
20
commit-message :
21
- prefix : clang-tools
21
+ prefix : build
22
22
groups :
23
23
clang-tools :
24
24
patterns :
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ def get_version_from_dependency(tool: str) -> Optional[str]:
32
32
DEFAULT_CLANG_TIDY_VERSION = get_version_from_dependency ("clang-tidy" )
33
33
34
34
35
+ # https://pypi.org/pypi/clang-format/json
35
36
CLANG_FORMAT_VERSIONS = [
36
37
"6.0.1" ,
37
38
"7.1.0" ,
@@ -98,8 +99,10 @@ def get_version_from_dependency(tool: str) -> Optional[str]:
98
99
"20.1.7" ,
99
100
"20.1.8" ,
100
101
"21.1.0" ,
102
+ "21.1.1" ,
101
103
]
102
104
105
+ # https://pypi.org/pypi/clang-tidy/json
103
106
CLANG_TIDY_VERSIONS = [
104
107
"13.0.1.1" ,
105
108
"14.0.6" ,
@@ -113,6 +116,7 @@ def get_version_from_dependency(tool: str) -> Optional[str]:
113
116
"19.1.0.1" ,
114
117
"20.1.0" ,
115
118
"21.1.0" ,
119
+ "21.1.1" ,
116
120
]
117
121
118
122
Original file line number Diff line number Diff line change @@ -34,8 +34,8 @@ classifiers = [
34
34
dependencies = [
35
35
" tomli>=1.1.0; python_version < '3.11'" ,
36
36
" 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 " ,
39
39
]
40
40
dynamic = [" version" ]
41
41
You can’t perform that action at this time.
0 commit comments