Skip to content

Commit e7ef7e9

Browse files
authored
Merge branch 'master' into ff/breaking-0.25
2 parents 5bde1f3 + 996f586 commit e7ef7e9

File tree

15 files changed

+130
-77
lines changed

15 files changed

+130
-77
lines changed

.github/workflows/Docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24'
4949
julia --color=yes makedocs.jl
5050
- name: Upload site as artifact
51-
uses: actions/upload-artifact@v6
51+
uses: actions/upload-artifact@v7
5252
with:
5353
name: Docs build
5454
path: ./docs/build

.github/workflows/compilation-benchmark.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
run: >
4141
DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24' julia --project=./metrics/ttfp/ ./metrics/ttfp/run-benchmark.jl ${{ matrix.package }} 20 ${{ github.event.pull_request.base.ref }}
4242
- name: Upload plots as artifact
43-
uses: actions/upload-artifact@v6
43+
uses: actions/upload-artifact@v7
4444
with:
4545
name: ${{ matrix.package }}
4646
path: ./benchmark_results
@@ -66,7 +66,7 @@ jobs:
6666
6767
- name: Download artifacts
6868
if: steps.check_token.outputs.has_token == 'true'
69-
uses: actions/download-artifact@v7
69+
uses: actions/download-artifact@v8
7070
with:
7171
path: ./images
7272
merge-multiple: true

.github/workflows/reference_images_site.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
4545
- name: Download ReferenceImages artifact
4646
if: steps.pr_number.outputs.pr != ''
47-
uses: actions/download-artifact@v7
47+
uses: actions/download-artifact@v8
4848
with:
4949
name: ReferenceImages
5050
path: ./reference_images_data

.github/workflows/reference_tests.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
julia --color=yes --project=monorepo -e 'using Pkg; Pkg.test("CairoMakie", coverage=true)'
5555
&& echo "TESTS_SUCCESSFUL=true" >> $GITHUB_ENV
5656
- name: Upload test Artifacts
57-
uses: actions/upload-artifact@v6
57+
uses: actions/upload-artifact@v7
5858
with:
5959
name: ReferenceImages_CairoMakie_${{ matrix.version }}
6060
path: ./CairoMakie/test/reference_images/
@@ -107,7 +107,7 @@ jobs:
107107
DISPLAY=:0 xvfb-run -s '-screen 0 1024x768x24' julia --color=yes --project=monorepo -e 'using Pkg; Pkg.test("GLMakie", coverage=true)'
108108
&& echo "TESTS_SUCCESSFUL=true" >> $GITHUB_ENV
109109
- name: Upload test Artifacts
110-
uses: actions/upload-artifact@v6
110+
uses: actions/upload-artifact@v7
111111
with:
112112
name: ReferenceImages_GLMakie_${{ matrix.version }}
113113
path: |
@@ -158,12 +158,12 @@ jobs:
158158
DISPLAY=:0 xvfb-run -s '-screen 0 2048x2048x24' julia --color=yes --project=monorepo -e 'using Pkg; Pkg.test("WGLMakie", coverage=true)'
159159
&& echo "TESTS_SUCCESSFUL=true" >> $GITHUB_ENV
160160
- name: Upload test Artifacts
161-
uses: actions/upload-artifact@v6
161+
uses: actions/upload-artifact@v7
162162
with:
163163
name: ReferenceImages_WGLMakie_${{ matrix.version }}
164164
path: ./WGLMakie/test/reference_images/
165165
- name: Upload test Electron logs
166-
uses: actions/upload-artifact@v6
166+
uses: actions/upload-artifact@v7
167167
with:
168168
name: Electron_Logs_WGLMakie_${{ matrix.version }}
169169
path: ./WGLMakie/test/electron.log
@@ -183,15 +183,15 @@ jobs:
183183
if: ${{ always() }} # run even if any of the three backend test jobs failed
184184
needs: [cairomakie, glmakie, wglmakie]
185185
steps:
186-
- uses: actions/download-artifact@v7
186+
- uses: actions/download-artifact@v8
187187
with:
188188
name: ReferenceImages_WGLMakie_1
189189
path: ./ReferenceImages/WGLMakie
190-
- uses: actions/download-artifact@v7
190+
- uses: actions/download-artifact@v8
191191
with:
192192
name: ReferenceImages_CairoMakie_1
193193
path: ./ReferenceImages/CairoMakie
194-
- uses: actions/download-artifact@v7
194+
- uses: actions/download-artifact@v8
195195
with:
196196
name: ReferenceImages_GLMakie_1
197197
path: ./ReferenceImages/GLMakie
@@ -222,7 +222,7 @@ jobs:
222222
done
223223
224224
echo "Files and folders have been successfully combined into ReferenceImagesCombined."
225-
- uses: actions/upload-artifact@v6
225+
- uses: actions/upload-artifact@v7
226226
with:
227227
name: ReferenceImages
228228
path: ./ReferenceImagesCombined/
@@ -235,7 +235,7 @@ jobs:
235235
echo $N_MISSING > ./n_missing/n_missing_refimages
236236
echo $COMMIT_SHA >> ./n_missing/n_missing_refimages
237237
- name: Upload artifact with number of missing refimages
238-
uses: actions/upload-artifact@v6
238+
uses: actions/upload-artifact@v7
239239
with:
240240
name: n_missing_refimages
241241
path: n_missing/

.github/workflows/rprmakie.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
julia --color=yes --project=monorepo -e 'using Pkg; Pkg.test("RPRMakie", coverage=true)'
5353
&& echo "TESTS_SUCCESSFUL=true" >> $GITHUB_ENV
5454
- name: Upload test Artifacts
55-
uses: actions/upload-artifact@v6
55+
uses: actions/upload-artifact@v7
5656
with:
5757
name: ReferenceImages_${{ matrix.os }}_${{ matrix.arch }}_${{ matrix.version }}
5858
path: ./RPRMakie/test/recorded

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@
2929

3030
## Unreleased
3131

32+
## [0.24.9] - 2026-03-04
33+
3234
- Added loading spinner in WGLMakie that displays while the plot is being loaded [#5469](https://github.com/MakieOrg/Makie.jl/pull/5469)
35+
- Fixed cycling not working in `PlotList`s [#5541](https://github.com/MakieOrg/Makie.jl/pull/5541)
3336
- Moved decoration plots in `Axis3` to `ax.blockscene` so they no longer show up as user plots in the Axis3 [#5463](https://github.com/MakieOrg/Makie.jl/pull/5463)
3437

3538
- Fixed issue with `transformation` being applied multiple times when set by a user in a recipe that passes applicable attributes to child plots [#5464](https://github.com/MakieOrg/Makie.jl/pull/5464)
@@ -1016,7 +1019,8 @@ All other changes are collected [in this PR](https://github.com/MakieOrg/Makie.j
10161019
- Fixed rendering of `heatmap`s with one or more reversed ranges in CairoMakie, as in `heatmap(1:10, 10:-1:1, rand(10, 10))` [#1100](https://github.com/MakieOrg/Makie.jl/pull/1100).
10171020
- Fixed volume slice recipe and added docs for it [#1123](https://github.com/MakieOrg/Makie.jl/pull/1123).
10181021

1019-
[Unreleased]: https://github.com/MakieOrg/Makie.jl/compare/v0.24.8...HEAD
1022+
[Unreleased]: https://github.com/MakieOrg/Makie.jl/compare/v0.24.9...HEAD
1023+
[0.24.9]: https://github.com/MakieOrg/Makie.jl/compare/v0.24.8...v0.24.9
10201024
[0.24.8]: https://github.com/MakieOrg/Makie.jl/compare/v0.24.7...v0.24.8
10211025
[0.24.7]: https://github.com/MakieOrg/Makie.jl/compare/v0.24.6...v0.24.7
10221026
[0.24.6]: https://github.com/MakieOrg/Makie.jl/compare/v0.24.5...v0.24.6

CairoMakie/Project.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
name = "CairoMakie"
22
uuid = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"
33
author = ["Simon Danisch <sdanisch@gmail.com>"]
4+
<<<<<<< ff/breaking-0.25
45
version = "0.16.0"
6+
=======
7+
version = "0.15.9"
8+
>>>>>>> master
59

610
[deps]
711
CRC32c = "8bf52ea8-c179-5cab-976a-9e18b702a9bc"
@@ -27,6 +31,10 @@ FileIO = "1.1"
2731
FreeType = "3, 4.0"
2832
GeometryBasics = "0.5"
2933
LinearAlgebra = "1.0, 1.6"
34+
<<<<<<< ff/breaking-0.25
3035
Makie = "=0.25.0"
36+
=======
37+
Makie = "=0.24.9"
38+
>>>>>>> master
3139
PrecompileTools = "1.0"
3240
julia = "1.3"

ComputePipeline/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ComputePipeline"
22
uuid = "95dc2771-c249-4cd0-9c9f-1f3b4330693c"
33
authors = ["Simon Danisch", "Frederic Freyer", "MakieOrg"]
4-
version = "0.1.6"
4+
version = "0.1.7"
55

66
[deps]
77
Observables = "510215fc-4207-5dde-b226-833fc4488ee2"

GLMakie/Project.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name = "GLMakie"
22
uuid = "e9467ef8-e4e7-5192-8a1a-b1aee30e663a"
3+
<<<<<<< ff/breaking-0.25
34
version = "0.14.0"
5+
=======
6+
version = "0.13.9"
7+
>>>>>>> master
48

59
[deps]
610
ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f"
@@ -33,7 +37,11 @@ FreeTypeAbstraction = "0.10"
3337
GLFW = "3.4.3"
3438
GeometryBasics = "0.5"
3539
LinearAlgebra = "1.0, 1.6"
40+
<<<<<<< ff/breaking-0.25
3641
Makie = "=0.25.0"
42+
=======
43+
Makie = "=0.24.9"
44+
>>>>>>> master
3745
Markdown = "1.0, 1.6"
3846
MeshIO = "0.5"
3947
ModernGL = "1"

Makie/Project.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
name = "Makie"
22
uuid = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a"
33
authors = ["Simon Danisch", "Julius Krumbiegel"]
4+
<<<<<<< ff/breaking-0.25
45
version = "0.25.0"
6+
=======
7+
version = "0.24.9"
8+
>>>>>>> master
59

610
[deps]
711
Animations = "27a7e980-b3e6-11e9-2bcd-0b925532e340"
@@ -82,7 +86,7 @@ ColorBrewer = "0.4"
8286
ColorSchemes = "3.5"
8387
ColorTypes = "0.8, 0.9, 0.10, 0.11, 0.12"
8488
Colors = "0.9, 0.10, 0.11, 0.12, 0.13"
85-
ComputePipeline = "0.1.6"
89+
ComputePipeline = "0.1.7"
8690
Contour = "0.5, 0.6"
8791
DelaunayTriangulation = "1.0"
8892
Distributions = "0.17, 0.18, 0.19, 0.20, 0.21, 0.22, 0.23, 0.24, 0.25"

0 commit comments

Comments
 (0)