Skip to content

Commit 1e6801d

Browse files
github-actions[bot]CompatHelper JuliaViralBShahdevmotion
authored
CompatHelper: bump compat for Documenter to 1 for package docs, (keep existing compat) (#1778)
* CompatHelper: bump compat for Documenter to 1 for package docs, (keep existing compat) * Update Project.toml * Set `warnonly` kwarg --------- Co-authored-by: CompatHelper Julia <compathelper_noreply@julialang.org> Co-authored-by: Viral B. Shah <ViralBShah@users.noreply.github.com> Co-authored-by: David Widmann <devmotion@users.noreply.github.com>
1 parent 3b981a0 commit 1e6801d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33
GR = "28b8d3ca-fb5f-59d9-8090-bfdbd6d07a71"
44

55
[compat]
6-
Documenter = "0.26, 0.27"
6+
Documenter = "1"
77
GR = "0.72.1, 0.73"

docs/make.jl

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Documenter, Distributions
22
import Random: AbstractRNG, rand!
33

4-
makedocs(
4+
makedocs(;
55
sitename = "Distributions.jl",
66
modules = [Distributions],
77
format = Documenter.HTML(; prettyurls = get(ENV, "CI", nothing) == "true"),
@@ -23,11 +23,12 @@ makedocs(
2323
"fit.md",
2424
"extends.md",
2525
"density_interface.md",
26-
]
26+
],
27+
warnonly = true,
2728
)
2829

2930
deploydocs(;
3031
repo = "github.com/JuliaStats/Distributions.jl.git",
3132
versions = ["stable" => "v^", "v#.#", "dev" => "master"],
32-
push_preview=true,
33+
push_preview = true,
3334
)

0 commit comments

Comments
 (0)