diff options
-rw-r--r-- | ChangeLog.md | 4 | ||||
-rwxr-xr-x | bin/provision | 9 |
2 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog.md b/ChangeLog.md index 15fdd9c..cf8e043 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,9 @@ # ChangeLog +## v0.2.0 - 2024-08-16 + +* [x] Provision: ensure a recent ggplot2 is used. + ## v0.1.9 - 2024-07-13 * [x] Fix link to the Bookup site in the documentation. diff --git a/bin/provision b/bin/provision index 21ca98e..3ae4ba4 100755 --- a/bin/provision +++ b/bin/provision @@ -77,5 +77,14 @@ if [ "$BOOKDOWN_PACKAGING" == "CRAN" ]; then else $SUDO apt install -y r-cran-bookdown $SUDO apt install -y r-cran-pdftools + + # As of 2024-08-16, this package is not available on Debian bookworm $SUDO Rscript -e 'install.packages("eulerr")' + + # As of 2024-08-16, ggplot2 from Debian bookworm version is 3.4.1, whereas + # some downstreams need functionality from 3.5.0 (specifically, the ability + # to use 'theme(legend.position = "inside"' constructs. + # + # Therefore we're currently installing a ggplot2 version from CRAN. + $SUDO Rscript -e 'install.packages("ggplot2")' fi |