diff --git a/DESCRIPTION b/DESCRIPTION index 66fedd0..6089919 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: ojoverse Title: All the Open Justice Oklahoma R Tools in One Place -Version: 0.3.0 +Version: 0.4.0 Authors@R: person("Brancen", "Gregory", , "brancengregory@gmail.com", role = c("aut", "cre")) Description: @@ -17,6 +17,7 @@ Imports: forcats, ggplot2, ojodb, + ojoregex, ojoslackr, ojoutils, purrr, @@ -28,6 +29,7 @@ Imports: tidyr Remotes: openjusticeok/ojodb, + openjusticeok/ojoregex, openjusticeok/ojoslackr, openjusticeok/ojoutils Suggests: diff --git a/NEWS.md b/NEWS.md index 84f0f3f..79dd6e2 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,7 +1,13 @@ -# ojoverse 0.3.0 (2021-04-19) +# ojoverse 0.4.0 (2024-02-21) + +* `{ojoregex}` joins the `{ojoverse}` + + +# ojoverse 0.3.0 (2023-04-19) * `{tidyverse}` core packages join the `{ojoverse}` + # ojoverse 0.2.0 (2023-04-15) * `{ojoutils}` joins the `{ojoverse}` diff --git a/R/attach.R b/R/attach.R index 1a52682..ba0ce8b 100644 --- a/R/attach.R +++ b/R/attach.R @@ -1,4 +1,4 @@ -core <- c("ojodb", "ojoslackr", "ojoutils") +core <- c("ojodb", "ojoregex", "ojoslackr", "ojoutils") core_unloaded <- function() { search <- paste0("package:", core) @@ -64,4 +64,4 @@ highlight_version <- function(x) { pieces <- strsplit(x, ".", fixed = TRUE) pieces <- lapply(pieces, function(x) ifelse(is_dev(x), cli::col_red(x), x)) vapply(pieces, paste, collapse = ".", FUN.VALUE = character(1)) -} \ No newline at end of file +} diff --git a/R/ojoverse.R b/R/ojoverse.R index bdb3faa..9aea0b0 100644 --- a/R/ojoverse.R +++ b/R/ojoverse.R @@ -6,6 +6,7 @@ # All declared Imports should be used. ignore_unused_imports <- function() { ojodb::ojo_connect + ojoregex::regex_pre_clean ojoslackr::ojo_watermark ojoutils::limit forcats::as_factor @@ -13,4 +14,4 @@ ignore_unused_imports <- function() { readr::read_csv stringr::str_c tidyr::nest -} \ No newline at end of file +}