From 1ad8910736fe9e338af2ea4c9c81101f87d666c1 Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Mon, 27 Aug 2018 20:31:38 +0200 Subject: [PATCH] Add `julia` keyword argument to deploydocs (#10) * The `julia` keyword argument to `Documenter.deploydocs` will be required in the future instead of automatically defaulting to `julia = "nightly" (see https://github.com/JuliaDocs/Documenter.jl/pull/712, https://github.com/JuliaDocs/Documenter.jl/issues/526). This commit adds `julia = "nightly"` to `Documenter.deploydocs`. * Deploy from 0.6 instead of nightly --- docs/make.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/make.jl b/docs/make.jl index 623013c..e280ef2 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -12,6 +12,7 @@ makedocs( ) deploydocs( + julia = "0.6", repo = "github.com/JuliaMath/KahanSummation.jl.git", target = "build", deps = nothing,