From 4ef25badbb2615fd539b72e22573b67ce487aac0 Mon Sep 17 00:00:00 2001 From: Garrick Aden-Buie Date: Thu, 8 Aug 2024 10:48:11 -0400 Subject: [PATCH 1/3] Update shinylive assets version --- R/version.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/version.R b/R/version.R index cd53b1f..2b723c9 100644 --- a/R/version.R +++ b/R/version.R @@ -1,4 +1,4 @@ # This is the version of the Shinylive assets to use. -SHINYLIVE_ASSETS_VERSION <- "0.5.0" +SHINYLIVE_ASSETS_VERSION <- "0.6.0" SHINYLIVE_R_VERSION <- as.character(utils::packageVersion("shinylive")) WEBR_R_VERSION <- "4.4.1" From 4244441e263454fabeb6f4e130bc99bf16b460a3 Mon Sep 17 00:00:00 2001 From: Garrick Aden-Buie Date: Thu, 8 Aug 2024 10:50:47 -0400 Subject: [PATCH 2/3] Update NEWS.md --- NEWS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NEWS.md b/NEWS.md index e160b27..36b6a9c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,7 @@ # shinylive (development version) +* Updated default shinylive assets to [v0.6.0](https://github.com/posit-dev/shinylive/releases/tag/v0.6.0). + * In CI and other automated workflow settings the `SHINYLIVE_WASM_PACKAGES` environment variable can now be used to control whether WebAssembly R package binaries are bundled with the exported shinylive app, in addition to the `wasm_packages` argument of the `export()` function. (#116) * shinylive now avoids bundling WebAssembly R package dependencies listed only in the `LinkingTo` section of required packages. With this change dependencies that are only required at build time are no longer included as part of the exported WebAssembly asset bundle. This reduces the total static asset size and improves the loading time of affected shinylive apps. (#115) From 97ffd7b1c5136c6050b4abd5d373b16ebe210dcf Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Thu, 8 Aug 2024 12:30:51 -0400 Subject: [PATCH 3/3] Update NEWS.md w/ PR number --- NEWS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index 36b6a9c..a63ddb5 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,6 @@ # shinylive (development version) -* Updated default shinylive assets to [v0.6.0](https://github.com/posit-dev/shinylive/releases/tag/v0.6.0). +* Updated default shinylive assets to [v0.6.0](https://github.com/posit-dev/shinylive/releases/tag/v0.6.0). (#120) * In CI and other automated workflow settings the `SHINYLIVE_WASM_PACKAGES` environment variable can now be used to control whether WebAssembly R package binaries are bundled with the exported shinylive app, in addition to the `wasm_packages` argument of the `export()` function. (#116)