From 3f76ea90a9549f25c0e40c4ecd37a5a1846dc233 Mon Sep 17 00:00:00 2001 From: CompatHelper Julia Date: Thu, 12 Dec 2024 01:09:45 +0000 Subject: [PATCH 1/2] CompatHelper: bump compat for Documenter to 1 for package docs, (keep existing compat) --- docs/Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Project.toml b/docs/Project.toml index 562d51ac..92a3d87a 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -3,5 +3,5 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" LogExpFunctions = "2ab3a3ac-af41-5b50-aa03-7779005ae688" [compat] -Documenter = "0.27" +Documenter = "0.27, 1" LogExpFunctions = "0.3" From fa7d7cf7f3dd6ae683e9be10dc03a39c1324e5a2 Mon Sep 17 00:00:00 2001 From: David Widmann Date: Thu, 12 Dec 2024 08:42:44 +0100 Subject: [PATCH 2/2] Remove Documenter < 1 and keyword argument not available on Documenter 1 --- docs/Project.toml | 2 +- docs/make.jl | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/Project.toml b/docs/Project.toml index 92a3d87a..76106070 100644 --- a/docs/Project.toml +++ b/docs/Project.toml @@ -3,5 +3,5 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" LogExpFunctions = "2ab3a3ac-af41-5b50-aa03-7779005ae688" [compat] -Documenter = "0.27, 1" +Documenter = "1" LogExpFunctions = "0.3" diff --git a/docs/make.jl b/docs/make.jl index 33225fea..9044a775 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -11,7 +11,6 @@ makedocs(; sitename="LogExpFunctions.jl", pages=Any["index.md"], checkdocs=:exports, - strict=true, ) deploydocs(; repo="github.com/JuliaStats/LogExpFunctions.jl.git")