Skip to content

Commit 5a8bce1

Browse files
authored
[skip vbump] upversion v0.5.0 (#377)
Closes #320
1 parent 831c64d commit 5a8bce1

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: teal.reporter
22
Title: Reporting Tools for 'shiny' Modules
3-
Version: 0.4.0.9009
4-
Date: 2025-08-13
3+
Version: 0.5.0
4+
Date: 2025-08-17
55
Authors@R: c(
66
person("Dawid", "Kaledkowski", , "[email protected]", role = c("aut", "cre"),
77
comment = c(ORCID = "0000-0001-9533-457X")),

NEWS.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
# teal.reporter 0.4.0.9009
2-
3-
### Miscellaneous
4-
5-
* Moves `finalize()` methods to private in R6 classes.
6-
7-
# teal.reporter 0.4.0
1+
# teal.reporter 0.5.0
82

93
### Breaking changes
104

@@ -14,10 +8,18 @@
148

159
### Enhancements
1610

11+
* Moves `finalize()` methods to private in R6 classes.
12+
* Improved the layout and appearance of the reporter with new UI design.
13+
* Added `preview_report_button_ui` and `preview_report_button_srv` to create a shiny module that creates a button to open the report previewer in a modal.
14+
* Improve error message when reporter zip file is not named correctly (#365)
15+
16+
# teal.reporter 0.4.0
17+
18+
### Enhancements
19+
1720
* Reports can now be reloaded. A zip file containing the report can be uploaded to restore the state of the Previewer.
1821
* Report cards are now included in bookmarks. When using the `shiny` bookmarking mechanism, existing report cards will be available in the restored application.
1922
* HTML content can now be added to the report.
20-
* Added `preview_report_button_ui` and `preview_report_button_srv` to create a shiny module that creates a button to open the report previewer in a modal.
2123

2224
# teal.reporter 0.3.1
2325

R/Previewer.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ NULL
119119
reporter_previewer_ui <- function(id) {
120120
ns <- shiny::NS(id)
121121
lifecycle::deprecate_soft(
122-
when = "0.4.1",
122+
when = "0.5.0",
123123
what = "reporter_previewer_ui()",
124124
details = paste(
125125
"Calling `reporter_previewer_ui()` is deprecated and will be removed in the next release.\n",
@@ -155,7 +155,7 @@ reporter_previewer_srv <- function(id,
155155
rmd_yaml_args = getOption("teal.reporter.rmd_yaml_args"),
156156
previewer_buttons = c("download", "load", "reset")) {
157157
lifecycle::deprecate_soft(
158-
when = "0.4.1",
158+
when = "0.5.0",
159159
what = "reporter_previewer_srv()",
160160
details = paste(
161161
"Calling `reporter_previewer_srv()` is deprecated and will be removed in the next release.\n",

0 commit comments

Comments
 (0)