Skip to content

Commit

Permalink
ProgressMeter 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
IanButterworth authored Aug 26, 2023
1 parent 469c900 commit 1ac7bbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "ProgressMeter"
uuid = "92933f4c-e287-5a05-a399-4b506db050ca"
version = "1.7.3"
version = "1.8.0"

[deps]
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
Expand Down

2 comments on commit 1ac7bbb

@IanButterworth
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

Release notes:

New Features

@showprogress "X: " color=:red showspeed=true for x in 1:10
    sleep(1)
end

or to dynamically disable the progress meter, for instance via an arg show_progress

@showprogress enabled=show_progress for x in 1:10
    sleep(1)
end

@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 created: JuliaRegistries/General/90313

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 v1.8.0 -m "<description of version>" 1ac7bbb3d342aeee835ae841e6712f494ff9bfff
git push origin v1.8.0

Please sign in to comment.