Skip to content

Commit 8cd5af4

Browse files
authored
Disable release build pre-1.1. (#6)
1 parent e4576f8 commit 8cd5af4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pdf/make.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ function collect_versions()
125125
# the version regex is not as general as Base.VERSION_REGEX -- we only build "pure"
126126
# versions and exclude tags that are pre-releases or have build information.
127127
v = VersionNumber(tag)
128-
# pdf doc only possible for 1.0.3 and above
129-
v >= v"1.0.4" && push!(versions, v)
128+
# pdf doc only possible for 1.1.0 and above
129+
v >= v"1.1.0" && push!(versions, v)
130130
end
131131
end
132132
return versions

0 commit comments

Comments
 (0)