Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name = "DocumentationGenerator"
uuid = "8f0d3306-d70b-5309-b898-24bb6ab47850"
authors = ["Sebastian Pfitzner <pfitzseb@physik.hu-berlin.de>", "Simon Danisch <sdanisch@gmail.com>", "Venkatesh Dayananda <venkatesh@juliacomputing.com>"]
repo = "https://github.com/JuliaDocs/DocumentationGenerator.jl.git"
version = "0.8.2"
version = "0.8.3"

[deps]
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
Expand All @@ -28,7 +28,7 @@ GitHub = "5.1, 5.2, 5.3, 5.4"
GitForge = "0.4"
GithubMarkdown = "0.2"
Gumbo = "0.8"
HTMLSanitizer = "0.2"
HTMLSanitizer = "0.2.1"
Highlights = "0.4, 0.5"
JSON = "0.21"
julia = "1.1"
Expand Down
6 changes: 3 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const julia = first(Base.julia_cmd())

@test length(keys(DocumentationGenerator.installable_on_version(joinpath(homedir(), ".julia", "registries", "General"), VERSION))) > 1500

@test DocumentationGenerator.maybe_redirect("https://docs.julialang.org/") == "https://docs.julialang.org/en/v1"
@test strip(DocumentationGenerator.maybe_redirect("https://docs.julialang.org/"), ['/']) == "https://docs.julialang.org/en/v1"

@testset "Running code with a timeout" begin
let
Expand Down Expand Up @@ -98,7 +98,7 @@ end
success = [true],
server_type = "github",
api_url="",
hosted_uri=["https://docs.sciml.ai/Overview/"],
hosted_uri=["https://docs.sciml.ai/Overview"],
doctype = ["hosted"],
),
# with docs
Expand Down Expand Up @@ -358,7 +358,7 @@ end
@test pkgdoctype == pkg.doctype[i]

if pkg.doctype[i] == "hosted"
@test get(toml, "hosted_uri", "") == pkg.hosted_uri[i]
@test strip(get(toml, "hosted_uri", ""), ['/']) == pkg.hosted_uri[i]
end

if pkginstalls == true
Expand Down