Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[skip vbump] upversion to 0.5.0 #552

Merged
merged 6 commits into from
Feb 6, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
donyunardi marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: teal.slice
Title: Filter Module for 'teal' Applications
Version: 0.4.0.9040
Version: 0.5.0
Date: 2024-01-31
Authors@R: c(
person("Dawid", "Kaledkowski", , "[email protected]", role = c("aut", "cre")),
Expand Down Expand Up @@ -45,7 +45,7 @@ Imports:
shinycssloaders (>= 1.0.0),
shinyjs,
shinyWidgets (>= 0.6.2),
teal.data (>= 0.3.0.9029),
teal.data (>= 0.4.0),
teal.logger (>= 0.1.1),
teal.widgets (>= 0.4.0),
utils
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# teal.slice 0.4.0.9040
# teal.slice 0.5.0

### Enhancements

Expand Down
4 changes: 2 additions & 2 deletions R/FilteredData-utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ init_filtered_data <- function(x, join_keys = teal.data::join_keys(), code, chec
checkmate::assert_class(join_keys, "join_keys")
if (!missing(code)) {
lifecycle::deprecate_stop(
"0.4.1",
"0.5.0",
"init_filtered_data(code = 'No longer supported')"
)
}
if (!missing(check)) {
lifecycle::deprecate_stop(
"0.4.1",
"0.5.0",
"init_filtered_data(check = 'No longer supported')"
)
}
Expand Down
3 changes: 1 addition & 2 deletions R/utils.R
donyunardi marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ check_simple_name <- function(name) {
#' as needed. Thus, we do not export this method.
#'
#' @param pattern (`character`) pattern of files to be included, passed to `system.file`
#' @param except (`character`) vector of basename filenames to be excluded
#'
#' @return HTML code that includes `JS` files
#' @keywords internal
Expand All @@ -41,7 +40,7 @@ include_js_files <- function(pattern) {
pattern = pattern,
full.names = TRUE
)
return(singleton(lapply(js_files, includeScript)))
singleton(lapply(js_files, includeScript))
}

#' Build concatenating call
Expand Down
2 changes: 0 additions & 2 deletions man/include_js_files.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading