Skip to content

Commit

Permalink
Makie v0.20 (#176)
Browse files Browse the repository at this point in the history
* FastTransforms v0.16 and Makie v0.20

* Update ci.yml

* SurfaceLike -> GridBased
  • Loading branch information
dlfivefifty authored May 21, 2024
1 parent 686c5ba commit 1d8e631
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
@@ -1,6 +1,6 @@
name = "ContinuumArrays"
uuid = "7ae1f121-cc2c-504b-ac30-9b923412ae5c"
version = "0.18"
version = "0.18.1"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand All @@ -14,6 +14,7 @@ Infinities = "e1ba4f0e-776d-440f-acd9-e1d2e9742647"
IntervalSets = "8197267c-284f-5f27-9208-e0e47529a953"
LazyArrays = "5078a376-72f3-5289-bfd5-ec5146d43c02"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a"
QuasiArrays = "c4ea9172-b204-11e9-377d-29865faadc5c"
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"

Expand All @@ -37,7 +38,7 @@ InfiniteArrays = "0.14"
Infinities = "0.1"
IntervalSets = "0.7"
LazyArrays = "2"
Makie = "0.19"
Makie = "0.20"
QuasiArrays = "0.11.5"
RecipesBase = "1.0"
StaticArrays = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion ext/ContinuumArraysMakieExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function Makie.convert_arguments(p::PointBased, g::AbstractQuasiVector)
end


function Makie.convert_arguments(p::SurfaceLike, g::AbstractQuasiVector)
function Makie.convert_arguments(p::GridBased, g::AbstractQuasiVector)
x,v = plotgridvalues(g)
convert_arguments(p, _split_svec(x)..., v)
end
Expand Down

2 comments on commit 1d8e631

@dlfivefifty
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/107312

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 v0.18.1 -m "<description of version>" 1d8e631fc9358f9783e419375922166dfaaeb36b
git push origin v0.18.1

Please sign in to comment.