Skip to content

Commit e66fa6d

Browse files
serenity4timholy
andauthored
Update compat bound for CodeTracking 2.0.0 (#692)
--------- Co-authored-by: Tim Holy <[email protected]>
1 parent 8802ba7 commit e66fa6d

File tree

4 files changed

+33
-23
lines changed

4 files changed

+33
-23
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1010
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
1111

1212
[compat]
13-
CodeTracking = "1.3.9"
13+
CodeTracking = "2"
1414
julia = "1.10"
1515

1616
[extras]

docs/Manifest.toml

Lines changed: 27 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/Project.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@ InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
55
JuliaInterpreter = "aa1ae85d-cabe-5617-a682-6adf51b2e16a"
66
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
77
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
8+
9+
[compat]
10+
CodeTracking = "2"
11+
Documenter = "1"

src/types.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ Return the deepest callee in the call stack.
372372
leaf(frame) = traverse(callee, frame)
373373

374374
function Base.show(io::IO, frame::Frame)
375-
frame_loc = CodeTracking.replace_buildbot_stdlibpath(repr(scopeof(frame)))
375+
frame_loc = Base.fixup_stdlib_path(repr(scopeof(frame)))
376376
println(io, "Frame for ", frame_loc)
377377
pc = frame.pc
378378
ns = nstatements(frame.framecode)

0 commit comments

Comments
 (0)