From 067912457f0159808204a57ed2318814b4148ecc Mon Sep 17 00:00:00 2001 From: Morten Piibeleht Date: Thu, 25 Oct 2018 05:25:01 -0700 Subject: [PATCH] Cap Documenter to v0.19 (#134) --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c8bd115..28866ce 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,4 +13,4 @@ notifications: script: - julia -e 'import Pkg; Pkg.build(); Pkg.test(; coverage=true)' after_success: - - julia -e 'Pkg.add("Documenter"); include(joinpath("docs", "make.jl"))' + - julia -e 'using Pkg; ps=PackageSpec(name="Documenter", version="0.19"); Pkg.add(ps); Pkg.pin(ps); include(joinpath("docs", "make.jl"))'