Skip to content

Commit a2c9576

Browse files
committed
Update analysis script of pandoc versions
1 parent ee6d0f3 commit a2c9576

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

tools/scripts/pandoc_releases.R

+16-1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,21 @@ tab %>%
8383
filter(ext == "tar.gz") %>%
8484
reframe(minmax = range(version))
8585

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+
86101
#' tar.gz available since pandoc 2.0
87102

88103
tab %>%
@@ -120,7 +135,7 @@ tab %>%
120135

121136
#' Since 3.1.2 there is an architecture for MacOS
122137
tab %>%
123-
filter(os == "macOS") %>%
138+
filter(os == "macOS" | variant == "macOS") %>%
124139
group_by(arch) %>%
125140
summarise(min = range(version)[1], max = range(version)[2])
126141

0 commit comments

Comments
 (0)