Skip to content

Commit 4486567

Browse files
authored
Update Documenter to 0.27.10. (#43264)
1 parent 6bea8e3 commit 4486567

File tree

3 files changed

+19
-11
lines changed

3 files changed

+19
-11
lines changed

doc/Manifest.toml

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
manifest_format = "2.0"
44

5+
[[deps.ANSIColoredPrinters]]
6+
git-tree-sha1 = "574baf8110975760d391c710b6341da1afa48d8c"
7+
uuid = "a4c015fc-c6ff-483c-b24f-f7ea428134e9"
8+
version = "0.0.1"
9+
510
[[deps.Base64]]
611
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
712

@@ -11,15 +16,15 @@ uuid = "ade2ca70-3891-5945-98fb-dc099432e06a"
1116

1217
[[deps.DocStringExtensions]]
1318
deps = ["LibGit2"]
14-
git-tree-sha1 = "a32185f5428d3986f47c2ab78b1f216d5e6cc96f"
19+
git-tree-sha1 = "b19534d1895d702889b219c382a6e18010797f0b"
1520
uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
16-
version = "0.8.5"
21+
version = "0.8.6"
1722

1823
[[deps.Documenter]]
19-
deps = ["Base64", "Dates", "DocStringExtensions", "IOCapture", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Test", "Unicode"]
20-
git-tree-sha1 = "621850838b3e74dd6dd047b5432d2e976877104e"
24+
deps = ["ANSIColoredPrinters", "Base64", "Dates", "DocStringExtensions", "IOCapture", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Test", "Unicode"]
25+
git-tree-sha1 = "f425293f7e0acaf9144de6d731772de156676233"
2126
uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
22-
version = "0.27.2"
27+
version = "0.27.10"
2328

2429
[[deps.IOCapture]]
2530
deps = ["Logging", "Random"]
@@ -33,9 +38,9 @@ uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
3338

3439
[[deps.JSON]]
3540
deps = ["Dates", "Mmap", "Parsers", "Unicode"]
36-
git-tree-sha1 = "81690084b6198a2e1da36fcfda16eeca9f9f24e4"
41+
git-tree-sha1 = "8076680b162ada2a031f707ac7b4953e30667a37"
3742
uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
38-
version = "0.21.1"
43+
version = "0.21.2"
3944

4045
[[deps.LibGit2]]
4146
deps = ["Base64", "NetworkOptions", "Printf", "SHA"]
@@ -53,12 +58,13 @@ uuid = "a63ad114-7e13-5084-954f-fe012c677804"
5358

5459
[[deps.NetworkOptions]]
5560
uuid = "ca575930-c2e3-43a9-ace4-1e988b2c1908"
61+
version = "1.2.0"
5662

5763
[[deps.Parsers]]
5864
deps = ["Dates"]
59-
git-tree-sha1 = "c8abc88faa3f7a3950832ac5d6e690881590d6dc"
65+
git-tree-sha1 = "ae4bbcadb2906ccc085cf52ac286dc1377dceccc"
6066
uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
61-
version = "1.1.0"
67+
version = "2.1.2"
6268

6369
[[deps.Printf]]
6470
deps = ["Unicode"]
@@ -69,11 +75,12 @@ deps = ["InteractiveUtils", "Markdown", "Sockets", "Unicode"]
6975
uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
7076

7177
[[deps.Random]]
72-
deps = ["Serialization"]
78+
deps = ["SHA", "Serialization"]
7379
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
7480

7581
[[deps.SHA]]
7682
uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce"
83+
version = "0.7.0"
7784

7885
[[deps.Serialization]]
7986
uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"

doc/make.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,7 @@ makedocs(
313313
# Update URLs to external stdlibs (JuliaLang/julia#43199)
314314
for (root, _, files) in walkdir(output_path), file in joinpath.(root, files)
315315
endswith(file, ".html") || continue
316+
local str
316317
str = read(file, String)
317318
# Index page links, update
318319
# https://github.com/JuliaLang/julia/blob/master/stdlib/${STDLIB_NAME}-${STDLIB_COMMIT}/path/to.md

stdlib/Unicode/src/Unicode.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ julia> Unicode.julia_chartransform('x')
2424
2525
`julia_chartransform` is mainly useful for passing to the [`Unicode.normalize`](@ref)
2626
function in order to mimic the normalization used by the Julia parser:
27-
```jl
27+
```jldoctest
2828
julia> s = "\u00B5o\u0308"
2929
"µö"
3030

0 commit comments

Comments
 (0)