We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d7ef02 commit f90c557Copy full SHA for f90c557
pdf/make.jl
@@ -125,10 +125,12 @@ function collect_versions()
125
# versions and exclude tags that are pre-releases or have build information.
126
v = VersionNumber(tag)
127
# pdf doc only possible for 1.1.0 and above
128
- # only build rc if > 1.7
129
- if v >= v"1.1.0" && (isempty(v.prerelease) || v > v"1.7.0")
130
- push!(versions, v)
131
- end
+ v >= v"1.1.0" || continue
+ # only build RCs if > 1.7
+ v < v"1.7.0" && !isempty(v.prerelease) && continue
+ # exclude 1.8.0-rc1
132
+ v == v"1.8.0-rc1" && continue
133
+ push!(versions, v)
134
end
135
136
return versions
0 commit comments