Skip to content

Commit

Permalink
Set voronoiplot's preferred axis type to 2D (#4349)
Browse files Browse the repository at this point in the history
* Set voronoiplot's preferred axis type to 2D

* Update CHANGELOG.md

---------

Co-authored-by: Simon <sdanisch@protonmail.com>
  • Loading branch information
asinghvi17 and SimonDanisch authored Sep 13, 2024
1 parent 08656a5 commit 7cfeb8e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
## [0.21.11] - 2024-09-13

- Hot fixes for 0.21.10 [#4356](https://github.com/MakieOrg/Makie.jl/pull/4356).
- Set `Voronoiplot`'s preferred axis type to 2D in all cases [#4349](https://github.com/MakieOrg/Makie.jl/pull/4349)

## [0.21.10] - 2024-09-12

Expand All @@ -16,8 +17,8 @@
- Fix gl_ClipDistance related segfault on WSL with GLMakie [#4270](https://github.com/MakieOrg/Makie.jl/pull/4270).
- Added option `label_position = :center` to place labels centered over each bar [#4274](https://github.com/MakieOrg/Makie.jl/pull/4274).
- `plotfunc()` and `func2type()` support functions ending with `!` [#4275](https://github.com/MakieOrg/Makie.jl/pull/4275).
- Fixed Boundserror in clipped multicolor lines in CairoMakie [#4313](https://github.com/MakieOrg/Makie.jl/pull/4313).
- Fix float precision based assertions error in GLMakie.volume [#4311](https://github.com/MakieOrg/Makie.jl/pull/4311).
- Fixed Boundserror in clipped multicolor lines in CairoMakie [#4313](https://github.com/MakieOrg/Makie.jl/pull/4313)
- Fix float precision based assertions error in GLMakie.volume [#4311](https://github.com/MakieOrg/Makie.jl/pull/4311)

## [0.21.9] - 2024-08-27

Expand Down
2 changes: 2 additions & 0 deletions src/basic_recipes/voronoiplot.jl
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ DelaunayTriangulation.jl.
MakieCore.mixin_colormap_attributes()...
end

preferred_axis_type(::Voronoiplot) = Axis

function _clip_polygon(poly::Polygon, circle::Circle)
# Sutherland-Hodgman adjusted
@assert isempty(poly.interiors) "Polygon must not have holes for clipping."
Expand Down

2 comments on commit 7cfeb8e

@SimonDanisch
Copy link
Member

Choose a reason for hiding this comment

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

@JuliaRegistrator register subdir=MakieCore

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

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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 MakieCore-v0.8.8 -m "<description of version>" 7cfeb8ecfc55108ed5ddaf645c25bd5d05fe62ef
git push origin MakieCore-v0.8.8

Please sign in to comment.