diff --git a/DESCRIPTION b/DESCRIPTION index 840ffd9..b5cf5b2 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: ghqc Title: Manage QC via GitHub Issues using Shiny Apps -Version: 0.1.4 +Version: 0.1.5 Authors@R: c( person("Anne", "Zheng", email = "anne@a2-ai.com", role = c("aut")), person("Jenna", "Johnson", email = "jenna@a2-ai.com", role = c("aut")), diff --git a/NEWS.md b/NEWS.md index 09d0391..efffb81 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,9 @@ # ghqc +# ghqc 0.1.5 + +- language change in `remove_ghqc_configuration` from "customizing information" to "custom configuration" + # ghqc 0.1.4 - Changes `install_dev_ghqc` to `install_dev_ghqcapp` diff --git a/R/info_repo.R b/R/info_repo.R index 3aac3cb..93c1ef9 100644 --- a/R/info_repo.R +++ b/R/info_repo.R @@ -42,12 +42,12 @@ download_ghqc_configuration <- function(info_path = ghqc_infopath(), .force = FA #' #' @export remove_ghqc_configuration <- function(info_path = ghqc_infopath()) { - cli::cli_inform("Removing downloaded customizing information in {info_path}...") + cli::cli_inform("Removing downloaded custom configuration in {info_path}...") tryCatch({ if (fs::dir_exists(info_path)) fs::dir_delete(info_path) - cli::cli_alert_success("Customizing information in {info_path} successfully removed") + cli::cli_alert_success("Custom configuration in {info_path} successfully removed") }, error = function(e) { - cli::cli_abort("Customizing information in {info_path} not removed due to {e$message}") + cli::cli_abort("Custom configuration in {info_path} not removed due to {e$message}") }) info_path }