From 1f7398711bbb4cb419dab29e4a4de0c67640668a Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Mon, 29 Jan 2024 19:29:43 -0500 Subject: [PATCH] Upgrade to Documenter v1 (#521) * Upgrade to Documenter v1 * Update make.jl * Update Project.toml --------- Co-authored-by: Eric Hanson <5846501+ericphanson@users.noreply.github.com> --- docs/Project.toml | 2 +- docs/make.jl | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/Project.toml b/docs/Project.toml index 12087b01..993c115d 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -3,4 +3,4 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" RegistryCI = "0c95cc5f-2f7e-43fe-82dd-79dbcba86b32" [compat] -Documenter = "< 1" +Documenter = "1" diff --git a/docs/make.jl b/docs/make.jl index 1f81ac0e..7026d966 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -6,7 +6,7 @@ DocMeta.setdocmeta!(RegistryCI, :DocTestSetup, :(using RegistryCI); recursive=tr makedocs(; modules=[RegistryCI], authors="Dilum Aluthge , Fredrik Ekre , contributors", - repo="https://github.com/JuliaRegistries/RegistryCI.jl/blob/{commit}{path}#{line}", + repo=Remotes.GitHub("JuliaRegistries", "RegistryCI.jl"), sitename="RegistryCI.jl", format=Documenter.HTML(; prettyurls=get(ENV, "CI", "false") == "true", @@ -21,7 +21,6 @@ makedocs(; "Public API" => "public.md", "Internals (Private)" => "internals.md", ], - strict=true, ) deploydocs(; repo="github.com/JuliaRegistries/RegistryCI.jl", push_preview=false)