Skip to content

Commit

Permalink
Fix compat and version.
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt authored Jul 26, 2022
2 parents 3d97b2e + d0398de commit ac1664f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name = "BugReporting"
uuid = "bcf9a6e7-4020-453c-b88e-690564246bb8"
authors = ["Keno Fischer <[email protected]>",
"Tim Besard <[email protected]>"]
version = "0.2.5"
version = "0.2.4"

[deps]
AWS = "fbe9abb3-538b-5e4e-ba9e-bc94f4f92ebc"
Expand All @@ -27,10 +27,11 @@ GDB_jll = "12.1"
Git = "1.0"
HTTP = "1.0"
JSON = "0.21"
Scratch = "1"
Tar = "1.3.1"
julia = "1.3"
rr_jll = "5.3.1"
ProgressMeter = "1.7"
ProgressMeter = "1"

[extras]
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Expand Down
2 changes: 1 addition & 1 deletion src/BugReporting.jl
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ function download_rr_trace(trace_url)
p = nothing
function update_progress(total::Int, now::Int)
if p === nothing && total > 0 && now != total
p = Progress(total; desc="Downloading trace:")
p = Progress(total; desc="Downloading trace: ")
end
if p !== nothing
update!(p, now)
Expand Down

2 comments on commit ac1664f

@maleadt
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/64920

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.4 -m "<description of version>" ac1664f1eda148159673521c7a26d5ee22824115
git push origin v0.2.4

Please sign in to comment.