Skip to content

Commit

Permalink
Update to Makie 0.20
Browse files Browse the repository at this point in the history
  • Loading branch information
j-fu committed Nov 22, 2023
1 parent aba7ba4 commit 7760584
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "GridVisualize"
uuid = "5eed8a63-0fb0-45eb-886d-8d5a387d12b8"
authors = ["Juergen Fuhrmann <[email protected]>"]
version = "1.3"
version = "1.3.1"

[deps]
ColorSchemes = "35d6a980-a343-548e-a6ea-1d62b119f2f4"
Expand All @@ -26,13 +26,13 @@ PlutoVista = "646e1f28-b900-46d7-9d87-d554eb38a413"
PyPlot = "d330b81b-6aea-500a-939a-2ce795aea3ee"

[compat]
CairoMakie = "0.10.12"
CairoMakie = "0.11"
ColorSchemes = "3"
Colors = "0.12,1"
DocStringExtensions = "0.8,0.9"
ElasticArrays = "1"
ExtendableGrids = "0.9,1"
GLMakie = "0.8.12"
GLMakie = "0.9"
GeometryBasics = "0.4.1"
GridVisualizeTools = "0.3,1"
HypertextLiteral = "0.9"
Expand Down
2 changes: 1 addition & 1 deletion src/makie.jl
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ function initialize!(p::GridVisualizer, ::Type{MakieType})

layout = p.context[:layout]

parent, flayout = FlippableLayout.flayoutscene(; resolution = p.context[:size])
parent, flayout = FlippableLayout.flayoutscene(; size = p.context[:size])

p.context[:figure] = parent
p.context[:flayout] = flayout
Expand Down

2 comments on commit 7760584

@j-fu
Copy link
Member Author

@j-fu j-fu commented on 7760584 Nov 22, 2023

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/95788

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 v1.3.1 -m "<description of version>" 77605846b2165082a851a4b7d699ed86df5723bf
git push origin v1.3.1

Please sign in to comment.