Skip to content

Commit 7d3b918

Browse files
committed
update documenter version
1 parent ed09c73 commit 7d3b918

File tree

3 files changed

+35
-15
lines changed

3 files changed

+35
-15
lines changed

docs/Manifest.toml

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
55

66
[[CodeTracking]]
77
deps = ["InteractiveUtils", "Test", "UUIDs"]
8-
git-tree-sha1 = "983f5f7a57c604322917ab8bc5b86ba914d3c345"
8+
git-tree-sha1 = "9b21a2dfe51ba71fdc5688039075819196595367"
99
uuid = "da1fd8a2-8d9e-5ec2-8556-3022fb5608a2"
10-
version = "0.3.2"
10+
version = "0.5.7"
1111

1212
[[Dates]]
1313
deps = ["Printf"]
@@ -19,25 +19,31 @@ uuid = "8ba89e20-285c-5b6f-9357-94700520ee1b"
1919

2020
[[DocStringExtensions]]
2121
deps = ["LibGit2", "Markdown", "Pkg", "Test"]
22-
git-tree-sha1 = "4d30e889c9f106a51ffa4791a88ffd4765bf20c3"
22+
git-tree-sha1 = "0513f1a8991e9d83255e0140aace0d0fc4486600"
2323
uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
24-
version = "0.7.0"
24+
version = "0.8.0"
2525

2626
[[Documenter]]
27-
deps = ["Base64", "DocStringExtensions", "InteractiveUtils", "LibGit2", "Logging", "Markdown", "Pkg", "REPL", "Random", "Test", "Unicode"]
28-
git-tree-sha1 = "a8c41ba3d0861240dbec942ee1d0f86c57c37c1c"
27+
deps = ["Base64", "DocStringExtensions", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Test", "Unicode"]
28+
git-tree-sha1 = "c61d6eedbc3c4323c08b64af12d29c8ee0fcbb5f"
2929
uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
30-
version = "0.21.5"
30+
version = "0.23.2"
3131

3232
[[InteractiveUtils]]
3333
deps = ["Markdown"]
3434
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
3535

36+
[[JSON]]
37+
deps = ["Dates", "Mmap", "Parsers", "Unicode"]
38+
git-tree-sha1 = "b34d7cef7b337321e97d22242c3c2b91f476748e"
39+
uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
40+
version = "0.21.0"
41+
3642
[[JuliaInterpreter]]
37-
deps = ["CodeTracking", "InteractiveUtils", "Random", "UUIDs"]
43+
deps = ["CodeTracking", "Documenter", "InteractiveUtils", "Random", "UUIDs"]
3844
path = ".."
3945
uuid = "aa1ae85d-cabe-5617-a682-6adf51b2e16a"
40-
version = "0.1.1"
46+
version = "0.6.1"
4147

4248
[[LibGit2]]
4349
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
@@ -49,6 +55,15 @@ uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
4955
deps = ["Base64"]
5056
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
5157

58+
[[Mmap]]
59+
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
60+
61+
[[Parsers]]
62+
deps = ["Dates", "Test"]
63+
git-tree-sha1 = "db2b35dedab3c0e46dc15996d170af07a5ab91c9"
64+
uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
65+
version = "0.3.6"
66+
5267
[[Pkg]]
5368
deps = ["Dates", "LibGit2", "Markdown", "Printf", "REPL", "Random", "SHA", "UUIDs"]
5469
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"

docs/make.jl

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
using Documenter, JuliaInterpreter, Test, CodeTracking
22

3-
remove() # ensure there are no activate breakpoints
3+
DocMeta.setdocmeta!(JuliaInterpreter, :DocTestSetup, :(
4+
begin
5+
using JuliaInterpreter
6+
empty!(JuliaInterpreter.junk)
7+
JuliaInterpreter.remove()
8+
end); recursive=true)
49

510
makedocs(
611
modules = [JuliaInterpreter],

src/construct.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ keyword-sorter function for `fcall`.
109109
110110
# Example
111111
112-
```jldoctest; setup=(using JuliaInterpreter; empty!(JuliaInterpreter.junk))
112+
```jldoctest
113113
julia> mymethod(x) = 1
114114
mymethod (generic function with 1 method)
115115
@@ -213,7 +213,7 @@ this will be the types of `allargs`);
213213
214214
# Example
215215
216-
```jldoctest; setup=(using JuliaInterpreter; empty!(JuliaInterpreter.junk))
216+
```jldoctest
217217
julia> mymethod(x::Vector{T}) where T = 1
218218
mymethod (generic function with 1 method)
219219
@@ -520,7 +520,7 @@ would be created by the generator.
520520
521521
# Example
522522
523-
```jldoctest; setup=(using JuliaInterpreter; empty!(JuliaInterpreter.junk))
523+
```jldoctest
524524
julia> mymethod(x) = x+1
525525
mymethod (generic function with 1 method)
526526
@@ -563,7 +563,7 @@ Build a `Frame` ready to execute `f` with the specified positional and keyword a
563563
564564
# Example
565565
566-
```jldoctest; setup=(using JuliaInterpreter; empty!(JuliaInterpreter.junk))
566+
```jldoctest
567567
julia> mymethod(x) = x+1
568568
mymethod (generic function with 1 method)
569569
@@ -661,7 +661,7 @@ Evaluate `f` on the specified arguments using the interpreter.
661661
662662
# Example
663663
664-
```jldoctest; setup=(using JuliaInterpreter; empty!(JuliaInterpreter.junk))
664+
```jldoctest
665665
julia> a = [1, 7]
666666
2-element Array{Int64,1}:
667667
1

0 commit comments

Comments
 (0)