Skip to content

Commit

Permalink
Release v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
islent committed Jan 14, 2022
1 parent 40e43ff commit 170f884
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "AstroPlot"
uuid = "00b67d96-df8a-4e04-ab4d-0170e12eeaec"
authors = ["islent <leoislent@gmail.com>"]
version = "0.1.0"
version = "0.1.1"

[deps]
AstroIO = "c85a633c-0c3f-44a2-bffe-7f9d0681b3e7"
Expand Down
4 changes: 2 additions & 2 deletions src/analyse/momentum.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ end

# If having `range step cannot be zero` error from Makie, try Plots.jl instead
# Ref:
# - https://github.com/JuliaPlots/Makie.jl/issues/1579
# - https://github.com/JuliaPlots/Makie.jl/issues/1040
# - https://github.com/JuliaPlots/Makie.jl/issues/931
# - https://github.com/JuliaPlots/Makie.jl/issues/1196
# - https://github.com/JuliaPlots/Makie.jl/issues/1373
function plot_momentum!(ax, df::DataFrame; axis = [:x, :y, :z], colors = nothing, kw...)
if isnothing(colors)
scenes = [plot_momentum!(ax, df, axis[i]; color = RGB(rand(3)...), kw...) for i in 1:length(axis)]
Expand Down

2 comments on commit 170f884

@islent
Copy link
Member Author

@islent islent commented on 170f884 Jan 15, 2022

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:

  • mesh
  • better legend
  • Makie new Figure API

@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/52445

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.1.1 -m "<description of version>" 170f884c69e1b68efef62892726da1f722c198ac
git push origin v0.1.1

Please sign in to comment.