Skip to content

Commit

Permalink
Minor plot recipes fix
Browse files Browse the repository at this point in the history
  • Loading branch information
briochemc committed Jul 5, 2021
1 parent fa5a945 commit 25ea637
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "AIBECS"
uuid = "ace601d6-714c-11e9-04e5-89b7fad23838"
authors = ["Benoit Pasquier <briochemc@gmail.com>"]
version = "0.9.2"
version = "0.9.3"

[deps]
Bijectors = "76274a88-744f-5084-9051-94815aaf08c4"
Expand Down
3 changes: 2 additions & 1 deletion src/plot_recipes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ Vertical–meridional / (y,z) plots
@userplot MeridionalPlane
@recipe function f(p::MeridionalPlane)
y, z, v = p.args
@show prettyticks(y, latticks)
@series begin
seriestype --> :heatmap
framestyle --> :box
Expand Down Expand Up @@ -187,6 +186,8 @@ Vertical / z plots
@series begin
yguide --> "Depth"
yflip --> true
xguide_position --> :top
xmirror --> :true
x, z
end
end
Expand Down

2 comments on commit 25ea637

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

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.9.3 -m "<description of version>" 25ea6378b9dce3a62766fc2dd57d89429287f7f2
git push origin v0.9.3

Please sign in to comment.