Skip to content

Commit

Permalink
v0.3.0 (#136)
Browse files Browse the repository at this point in the history
* Increment version number to 0.3.0

* Ignore ./venv

* white spacing

* chore: Use shinylive assets v0.9.1

* chore: update NEWS

* chore: build ignore `_dev/` and `.venv/`

* chore: build ignore `node_modules/`

* chore: update CRAN comments

---------

Co-authored-by: Garrick Aden-Buie <garrick@adenbuie.com>
  • Loading branch information
schloerke and gadenbuie authored Nov 13, 2024
1 parent 427ad61 commit a6a19b0
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 15 deletions.
4 changes: 4 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,7 @@
^CRAN-SUBMISSION$
^examples$
^\.Rproj\.user$
^venv$
^.venv$
^_dev$
^node_modules$
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ local/quarto/*_files/
local/quarto/*.js
local/quarto/_extensions/
.Rproj.user
venv/
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: shinylive
Title: Run 'shiny' Applications in the Browser
Version: 0.2.0.9000
Version: 0.3.0
Authors@R: c(
person("Barret", "Schloerke", , "barret@posit.co", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-9986-114X")),
Expand Down
8 changes: 5 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# shinylive (development version)
# shinylive 0.3.0

* Updated default shinylive assets to [v0.9.0](https://github.com/posit-dev/shinylive/releases/tag/v0.9.0). (#120, #129, #135)
* Updated default shinylive assets to [v0.9.1](https://github.com/posit-dev/shinylive/releases/tag/v0.9.1). (#120, #129, #135)

* Resources are now built relative to Quarto project root. (#130)

* 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)

* shinylive now supports adding files in virtual subdirectories in `shinylive-r` apps emebedded in Quarto documents. For example, `## file: R/load_data.R` in a `shinylive-r` chunk followed by the `load_data.R` code will create a file `load_data.R` in the `R` subdirectory of the exported app. (#119)
* shinylive now supports adding files in virtual subdirectories in `shinylive-r` apps embedded in Quarto documents. For example, `## file: R/load_data.R` in a `shinylive-r` chunk followed by the `load_data.R` code will create a file `load_data.R` in the `R` subdirectory of the exported app. (#119)

# shinylive 0.2.0

Expand All @@ -27,7 +27,9 @@
# shinylive 0.1.1

* Bump shinylive assets dependency to 0.2.3. (#38)

* Use `{httpuv}` to serve static folder instead of plumber. (#40)

* Use `{httr2}` to download assets from GitHub releases. (@dgkf #30, #39)

# shinylive 0.1.0
Expand Down
2 changes: 1 addition & 1 deletion R/version.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This is the version of the Shinylive assets to use.
SHINYLIVE_ASSETS_VERSION <- "0.9.0"
SHINYLIVE_ASSETS_VERSION <- "0.9.1"
SHINYLIVE_R_VERSION <- as.character(utils::packageVersion("shinylive"))
WEBR_R_VERSION <- "4.4.1"
10 changes: 0 additions & 10 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,5 @@
## Comments

#### 2024-07-19

Some bug fixes and new features.

Please let me know if I can provide any more information.

Thank you,
Barret


## R CMD check results

0 errors | 0 warnings | 0 notes
Expand Down

0 comments on commit a6a19b0

Please sign in to comment.