Skip to content

Commit f5e557d

Browse files
mortenpiararslan
authored andcommitted
Cap Documenter.jl to 0.19 on Travis (#65)
Documenter 0.20 will introduce breaking changes that will invalidate existing make.jl setups. This commit makes sure that automatic Travis builds will not use 0.20 automatically, in order to avoid sudden documentation deployment failures once Documenter 0.20 gets tagged. This commit has been generated by a script.
1 parent 07eb54f commit f5e557d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ notifications:
1212
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
1313
# - julia -e 'Pkg.clone(pwd()); Pkg.build("Primes"); Pkg.test("Primes"; coverage=true)'
1414
after_success:
15-
- julia -e 'Pkg.add("Coverage"); Pkg.add("Documenter")'
15+
- julia -e 'Pkg.add("Coverage"); ps=Pkg.PackageSpec(name="Documenter", version="0.19"); Pkg.add(ps); Pkg.pin(ps)'
1616
- julia -e 'cd(Pkg.dir("Primes")); using Coverage; Coveralls.submit(Coveralls.process_folder())'
1717
- julia -e 'cd(Pkg.dir("Primes")); include(joinpath("docs", "make.jl"))'

0 commit comments

Comments
 (0)