From 8effec178c46c4699729eebe3fe00ec93e3e1c87 Mon Sep 17 00:00:00 2001 From: Randy Boyes Date: Tue, 2 Apr 2024 17:29:51 -0400 Subject: [PATCH] update news.md --- NEWS.md | 9 +++++++++ Project.toml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 46a5004..23d0581 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,14 @@ # TidierPlots.jl updates +# v0.6.1 - 2024-04-02 +- Tests have been added for all currently supported geom_* functions +- Bug Fix: Repairs geoms that were broken by removal of AlgebraOfGraphics +- Basic functionality from {patchwork} (`+`, `|`, and `/` operators for plot composition) is now supported +- Column transformation functions have been standardized to allow easier declaration of new geom functions +- Support added for "compound geoms" that use more than one underlying Makie.jl plot (e.g. `geom_smooth`) +- Adds support for `stat_*` functions that modify the underlying data prior to plotting +- Adds functionality to automatically convert arguments to Types expected by Makie.jl + # v0.6.0 - 2024-02-27 - Dependency on AlgebraOfGraphics.jl removed - Support for positional aes specification (e.g. @aes(x, y) instead of @aes(x = x, y = y)) diff --git a/Project.toml b/Project.toml index 069ef8c..e8bf8e5 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "TidierPlots" uuid = "337ecbd1-5042-4e2a-ae6f-ca776f97570a" authors = ["Randall Boyes <33524191+rdboyes@users.noreply.github.com> and contributors"] -version = "0.6.1" +version = "0.6.2" [deps] CairoMakie = "13f3f980-e62b-5c42-98c6-ff1f3baf88f0"