Skip to content

Commit

Permalink
Bump Documenter to 0.26.0 (#38826)
Browse files Browse the repository at this point in the history
Also, remove DocumenterLaTeX, since the PDF/LaTeX backend is now again
provided by Documenter directly.
  • Loading branch information
mortenpi committed Dec 11, 2020
1 parent d8975fa commit b7d5240
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 15 deletions.
34 changes: 22 additions & 12 deletions doc/Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,9 @@ version = "0.8.3"

[[Documenter]]
deps = ["Base64", "Dates", "DocStringExtensions", "IOCapture", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Test", "Unicode"]
git-tree-sha1 = "a4875e0763112d6d017126f3944f4133abb342ae"
git-tree-sha1 = "c01a7e8bcf7a6693444a52a0c5ac8b4e9528600e"
uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
version = "0.25.5"

[[DocumenterLaTeX]]
deps = ["Documenter", "Test"]
git-tree-sha1 = "653299370be20ff580bccd707dc9f360c0852d7f"
uuid = "cd674d7a-5f81-5cf3-af33-235ef1834b99"
version = "0.2.0"
version = "0.26.0"

[[Downloads]]
deps = ["ArgTools", "LibCURL", "NetworkOptions"]
Expand All @@ -56,13 +50,17 @@ deps = ["LibCURL_jll", "MozillaCACerts_jll"]
uuid = "b27032c2-a3e7-50c8-80cd-2d36dbcbfd21"

[[LibCURL_jll]]
deps = ["Libdl"]
deps = ["Artifacts", "LibSSH2_jll", "Libdl", "MbedTLS_jll", "Zlib_jll", "nghttp2_jll"]
uuid = "deac9b47-8bc7-5906-a0fe-35ac56dc84c0"

[[LibGit2]]
deps = ["NetworkOptions", "Printf"]
deps = ["Base64", "NetworkOptions", "Printf", "SHA"]
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"

[[LibSSH2_jll]]
deps = ["Artifacts", "Libdl", "MbedTLS_jll"]
uuid = "29816b5a-b9ab-546f-933c-edad1886dfa8"

[[Libdl]]
uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb"

Expand All @@ -73,6 +71,10 @@ uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
deps = ["Base64"]
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"

[[MbedTLS_jll]]
deps = ["Artifacts", "Libdl"]
uuid = "c8ffd9c3-330d-5841-b78e-0817d7145fa1"

[[Mmap]]
uuid = "a63ad114-7e13-5084-954f-fe012c677804"

Expand All @@ -84,9 +86,9 @@ uuid = "ca575930-c2e3-43a9-ace4-1e988b2c1908"

[[Parsers]]
deps = ["Dates"]
git-tree-sha1 = "b417be52e8be24e916e34b3d70ec2da7bdf56a68"
git-tree-sha1 = "6370b5b3cf2ce5a3d2b6f7ab2dc10f374e4d7d2b"
uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
version = "1.0.12"
version = "1.0.14"

[[Pkg]]
deps = ["Artifacts", "Dates", "Downloads", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "Serialization", "TOML", "Tar", "UUIDs"]
Expand Down Expand Up @@ -131,3 +133,11 @@ uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"

[[Unicode]]
uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

[[Zlib_jll]]
deps = ["Libdl"]
uuid = "83775a58-1f1d-513f-b197-d71354ab007a"

[[nghttp2_jll]]
deps = ["Artifacts", "Libdl"]
uuid = "8e850ede-7688-5339-a07c-302acd2aaf8d"
1 change: 0 additions & 1 deletion doc/Project.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
[deps]
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
DocumenterLaTeX = "cd674d7a-5f81-5cf3-af33-235ef1834b99"
4 changes: 2 additions & 2 deletions doc/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pushfirst!(DEPOT_PATH, joinpath(@__DIR__, "deps"))
using Pkg
Pkg.instantiate()

using Documenter, DocumenterLaTeX
using Documenter

baremodule GenStdLib end

Expand Down Expand Up @@ -196,7 +196,7 @@ let r = r"buildroot=(.+)", i = findfirst(x -> occursin(r, x), ARGS)
end

const format = if render_pdf
LaTeX(
Documenter.LaTeX(
platform = "texplatform=docker" in ARGS ? "docker" : "native"
)
else
Expand Down

0 comments on commit b7d5240

Please sign in to comment.