From 965e9652db9d0abf1e66968da760c678df92c2a5 Mon Sep 17 00:00:00 2001 From: davidhodge931 Date: Fri, 10 Nov 2023 13:09:22 +1300 Subject: [PATCH] Bump version --- DESCRIPTION | 2 +- NEWS.md | 2 +- vignettes/articles/4_extensions-Rmd.Rmd | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 02008f014..a11bc718a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: ggblanket Title: Simplify 'ggplot2' Visualisation -Version: 5.1.9000 +Version: 5.2.0 Authors@R: c( person("David", "Hodge", email = "davidhodge931@gmail.com", role = c("aut", "cre", "cph"), comment = c(ORCID = "0000-0002-3868-7501")), diff --git a/NEWS.md b/NEWS.md index b0deacc23..badaf8054 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# ggblanket 5.1.9000 +# ggblanket 5.2.0 * Updated colours: `#357BA2` or `mako[9](5)` where no col aesthetic, `guardian` where discrete and 4 or less colours, scales:hue_pal for 5 or more colours, `viridis::mako` reversed for continuous, and `"grey"` for NA. * Breaking: removed all `pal_*` functions. diff --git a/vignettes/articles/4_extensions-Rmd.Rmd b/vignettes/articles/4_extensions-Rmd.Rmd index 8f7bc313f..85317c7c3 100644 --- a/vignettes/articles/4_extensions-Rmd.Rmd +++ b/vignettes/articles/4_extensions-Rmd.Rmd @@ -311,7 +311,7 @@ penguins2 |> ggnewscale::new_scale_colour() + geom_point(aes(x = flipper_length_mm, y = body_mass_g, colour = species), data = penguins2 |> filter(species != "Gentoo")) + - scale_color_manual(values = guardian()[c(4,2)]) + + scale_color_manual(values = guardian()[c(3,2)]) + labs(colour = "Species") ```