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 456b738 commit e4576f8Copy full SHA for e4576f8
pdf/make.jl
@@ -121,7 +121,9 @@ function collect_versions()
121
# lines are in the form 'COMMITSHA\trefs/tags/TAG'
122
_, ref = split(line, '\t')
123
_, _, tag = split(ref, '/')
124
- if occursin(Base.VERSION_REGEX, tag)
+ if occursin(r"^v\d+\.\d+\.\d+$", tag)
125
+ # the version regex is not as general as Base.VERSION_REGEX -- we only build "pure"
126
+ # versions and exclude tags that are pre-releases or have build information.
127
v = VersionNumber(tag)
128
# pdf doc only possible for 1.0.3 and above
129
v >= v"1.0.4" && push!(versions, v)
0 commit comments