File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ def get_version_from_dependency(tool: str) -> Optional[str]:
31
31
DEFAULT_CLANG_FORMAT_VERSION = get_version_from_dependency ("clang-format" )
32
32
DEFAULT_CLANG_TIDY_VERSION = get_version_from_dependency ("clang-tidy" )
33
33
34
-
34
+ # https://pypi.org/pypi/clang-format/json
35
35
CLANG_FORMAT_VERSIONS = [
36
36
"6.0.1" ,
37
37
"7.1.0" ,
@@ -98,8 +98,11 @@ def get_version_from_dependency(tool: str) -> Optional[str]:
98
98
"20.1.7" ,
99
99
"20.1.8" ,
100
100
"21.1.0" ,
101
+ "21.1.1" ,
102
+ "21.1.2" ,
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
You can’t perform that action at this time.
0 commit comments