File tree 1 file changed +16
-1
lines changed
1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,21 @@ tab %>%
83
83
filter(ext == " tar.gz" ) %> %
84
84
reframe(minmax = range(version ))
85
85
86
+ # ' arm64 since 2.12
87
+ tab %> %
88
+ filter(ext == " tar.gz" , arch == " arm64" ) %> %
89
+ reframe(minmax = range(version ))
90
+
91
+ # ' amd64 since 2.8
92
+ tab %> %
93
+ filter(ext == " tar.gz" , arch == " amd64" ) %> %
94
+ reframe(minmax = range(version ))
95
+
96
+ # ' no arch before from 2.0 to 2.7.3
97
+ tab %> %
98
+ filter(ext == " tar.gz" , is.na(arch )) %> %
99
+ reframe(minmax = range(version ))
100
+
86
101
# ' tar.gz available since pandoc 2.0
87
102
88
103
tab %> %
@@ -120,7 +135,7 @@ tab %>%
120
135
121
136
# ' Since 3.1.2 there is an architecture for MacOS
122
137
tab %> %
123
- filter(os == " macOS" ) %> %
138
+ filter(os == " macOS" | variant == " macOS " ) %> %
124
139
group_by(arch ) %> %
125
140
summarise(min = range(version )[1 ], max = range(version )[2 ])
126
141
You can’t perform that action at this time.
0 commit comments