-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathversions.py
More file actions
93 lines (90 loc) · 1.45 KB
/
versions.py
File metadata and controls
93 lines (90 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
"""
Version management for clang-format and clang-tidy.
This module provides hardcoded version lists that are updated periodically via GitHub Actions.
"""
# Updated automatically by GitHub Actions - DO NOT EDIT MANUALLY
CLANG_FORMAT_VERSIONS = [
"6.0.1",
"7.1.0",
"8.0.1",
"9.0.0",
"10.0.1",
"10.0.1.1",
"11.0.1",
"11.0.1.1",
"11.0.1.2",
"11.1.0",
"11.1.0.1",
"11.1.0.2",
"12.0.1",
"12.0.1.1",
"12.0.1.2",
"13.0.0",
"13.0.1",
"13.0.1.1",
"14.0.0",
"14.0.1",
"14.0.3",
"14.0.4",
"14.0.5",
"14.0.6",
"15.0.4",
"15.0.6",
"15.0.7",
"16.0.0",
"16.0.1",
"16.0.2",
"16.0.3",
"16.0.4",
"16.0.5",
"16.0.6",
"17.0.1",
"17.0.2",
"17.0.3",
"17.0.4",
"17.0.5",
"17.0.6",
"18.1.0",
"18.1.1",
"18.1.2",
"18.1.3",
"18.1.4",
"18.1.5",
"18.1.6",
"18.1.7",
"18.1.8",
"19.1.0",
"19.1.1",
"19.1.2",
"19.1.3",
"19.1.4",
"19.1.5",
"19.1.6",
"19.1.7",
"20.1.0",
"20.1.3",
"20.1.4",
"20.1.5",
"20.1.6",
"20.1.7",
"20.1.8",
"21.1.0",
"21.1.1",
"21.1.2",
]
# Updated automatically by GitHub Actions - DO NOT EDIT MANUALLY
CLANG_TIDY_VERSIONS = [
"13.0.1.1",
"14.0.6",
"15.0.2",
"15.0.2.1",
"16.0.4",
"17.0.1",
"18.1.1",
"18.1.8",
"19.1.0",
"19.1.0.1",
"20.1.0",
"21.1.0",
"21.1.1",
]