From 24c8aae874d085da4afc512f5c673f48c216691d Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 9 Jun 2022 20:27:03 +0200 Subject: [PATCH] patch release 0.17.4 (#2029) * add forgotten PRs * up versions --- CairoMakie/Project.toml | 4 ++-- GLMakie/Project.toml | 4 ++-- MakieCore/Project.toml | 2 +- NEWS.md | 15 +++++++++++++-- Project.toml | 2 +- RPRMakie/Project.toml | 4 ++-- WGLMakie/Project.toml | 4 ++-- 7 files changed, 23 insertions(+), 12 deletions(-) diff --git a/CairoMakie/Project.toml b/CairoMakie/Project.toml index 280e9ed84f5..d1f30d5d133 100644 --- a/CairoMakie/Project.toml +++ b/CairoMakie/Project.toml @@ -1,7 +1,7 @@ name = "CairoMakie" uuid = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0" author = ["Simon Danisch "] -version = "0.8.3" +version = "0.8.4" [deps] Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f" @@ -22,7 +22,7 @@ FFTW = "1" FileIO = "1.1" FreeType = "3, 4.0" GeometryBasics = "0.4.1" -Makie = "=0.17.3" +Makie = "=0.17.4" julia = "1.3" [extras] diff --git a/GLMakie/Project.toml b/GLMakie/Project.toml index ae94bacbc2b..ec0aba575c8 100644 --- a/GLMakie/Project.toml +++ b/GLMakie/Project.toml @@ -1,6 +1,6 @@ name = "GLMakie" uuid = "e9467ef8-e4e7-5192-8a1a-b1aee30e663a" -version = "0.6.3" +version = "0.6.4" [deps] ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f" @@ -29,7 +29,7 @@ FixedPointNumbers = "0.7, 0.8" FreeTypeAbstraction = "0.8, 0.9" GLFW = "3" GeometryBasics = "0.4.1" -Makie = "=0.17.3" +Makie = "=0.17.4" MeshIO = "0.4" ModernGL = "1" Observables = "0.5.1" diff --git a/MakieCore/Project.toml b/MakieCore/Project.toml index 92013e89e6b..211247509b1 100644 --- a/MakieCore/Project.toml +++ b/MakieCore/Project.toml @@ -1,7 +1,7 @@ authors = ["Simon Danisch"] name = "MakieCore" uuid = "20f20a25-4f0e-4fdf-b5d1-57303727442b" -version = "0.3.1" +version = "0.3.2" [deps] Observables = "510215fc-4207-5dde-b226-833fc4488ee2" diff --git a/NEWS.md b/NEWS.md index 3e8362b34bd..5d50df3c88f 100644 --- a/NEWS.md +++ b/NEWS.md @@ -2,8 +2,19 @@ ## master +## v0.17.4 + - The functions `hlines!`, `vlines!`, `hspan!`, `vspan!` and `abline!` were reimplemented as recipes. This allows using them without an `Axis` argument in first position and also as visuals in AlgebraOfGraphics.jl. Also, `abline!` is now called `ablines!` for consistency, `abline!` is still exported but deprecated and will be removed in the future. [#2023](https://github.com/JuliaPlots/Makie.jl/pulls/2023). -- Added `rainclouds` and `rainclouds!` [#1725](https://github.com/JuliaPlots/Makie.jl/pull/1725) +- Added `rainclouds` and `rainclouds!` [#1725](https://github.com/JuliaPlots/Makie.jl/pull/1725). +- Improve CairoMakie performance [#1964](https://github.com/JuliaPlots/Makie.jl/pull/1964) [#1981](https://github.com/JuliaPlots/Makie.jl/pull/1981). +- Interpolate colormap correctly [#1973](https://github.com/JuliaPlots/Makie.jl/pull/1973). +- Fix picking [#1993](https://github.com/JuliaPlots/Makie.jl/pull/1993). +- Improve compile time latency [#1968](https://github.com/JuliaPlots/Makie.jl/pull/1968) [#2000](https://github.com/JuliaPlots/Makie.jl/pull/2000). +- Fix multi poly with rects [#1999](https://github.com/JuliaPlots/Makie.jl/pull/1999). +- Respect scale and nonlinear values in PlotUtils cgrads [#1979](https://github.com/JuliaPlots/Makie.jl/pull/1979). +- Fix CairoMakie heatmap filtering [#1828](https://github.com/JuliaPlots/Makie.jl/pull/1828). +- Remove GLVisualize and MakieLayout module [#2007](https://github.com/JuliaPlots/Makie.jl/pull/2007) [#2008](https://github.com/JuliaPlots/Makie.jl/pull/2008). +- Add linestyle and default to extrema(z) for contour, remove bitrotten fillrange [#2008](https://github.com/JuliaPlots/Makie.jl/pull/2008). ## v0.17.3 @@ -18,7 +29,7 @@ ## v0.17.1 - Added word wrapping. In `Label`, `word_wrap = true` causes it to use the suggested width and wrap text to fit. In `text`, `word_wrap_width > 0` can be used to set a pixel unit line width. Any word (anything between two spaces without a newline) that goes beyond this width gets a newline inserted before it [#1819](https://github.com/JuliaPlots/Makie.jl/pull/1819). -- Improved `Axis3`'s interactive performance [#1835](https://github.com/JuliaPlots/Makie.jl/pull/1835). +- Improved `Axis3`'s interactive performance [#1835](https://github.com/JuliaPlots/Makie.jl/pull/1835). - Fixed errors in GLMakie's `scatter` implementation when markers are given as images. [#1917](https://github.com/JuliaPlots/Makie.jl/pull/1917). - Removed some method ambiguities introduced in v0.17 [#1922](https://github.com/JuliaPlots/Makie.jl/pull/1922). - Add an empty default label, `""`, to each slider that doesn't have a label in `SliderGrid` [#1888](https://github.com/JuliaPlots/Makie.jl/pull/1888). diff --git a/Project.toml b/Project.toml index 16ba5f8c3fd..cfb9d6a9233 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "Makie" uuid = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a" authors = ["Simon Danisch", "Julius Krumbiegel"] -version = "0.17.3" +version = "0.17.4" [deps] Animations = "27a7e980-b3e6-11e9-2bcd-0b925532e340" diff --git a/RPRMakie/Project.toml b/RPRMakie/Project.toml index d8b03d54ce8..d85275eb973 100644 --- a/RPRMakie/Project.toml +++ b/RPRMakie/Project.toml @@ -1,7 +1,7 @@ name = "RPRMakie" uuid = "22d9f318-5e34-4b44-b769-6e3734a732a6" authors = ["Simon Danisch"] -version = "0.3.3" +version = "0.3.4" [deps] Colors = "5ae59095-9a9b-59fe-a467-6f913c188581" @@ -17,7 +17,7 @@ julia = "1.3" Colors = "0.9, 0.10, 0.11, 0.12" FileIO = "1.6" GeometryBasics = "0.4.1" -Makie = "=0.17.3" +Makie = "=0.17.4" RadeonProRender = "0.2.1" [extras] diff --git a/WGLMakie/Project.toml b/WGLMakie/Project.toml index 9d389cca340..b0150642679 100644 --- a/WGLMakie/Project.toml +++ b/WGLMakie/Project.toml @@ -1,7 +1,7 @@ name = "WGLMakie" uuid = "276b4fcb-3e11-5398-bf8b-a0c2d153d008" authors = ["SimonDanisch "] -version = "0.6.3" +version = "0.6.4" [deps] Colors = "5ae59095-9a9b-59fe-a467-6f913c188581" @@ -26,7 +26,7 @@ GeometryBasics = "0.4.1" Hyperscript = "0.0.3, 0.0.4" ImageMagick = "1.1" JSServe = "1.2.7" -Makie = "=0.17.3" +Makie = "=0.17.4" Observables = "0.5.1" RelocatableFolders = "0.1, 0.2, 0.3" ShaderAbstractions = "0.2.1"