Skip to content

Commit

Permalink
Adds ojoregex to the core loaded package
Browse files Browse the repository at this point in the history
  • Loading branch information
brancengregory committed Feb 22, 2024
1 parent 3489164 commit c280b92
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
4 changes: 3 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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", , "[email protected]", role = c("aut", "cre"))
Description:
Expand All @@ -17,6 +17,7 @@ Imports:
forcats,
ggplot2,
ojodb,
ojoregex,
ojoslackr,
ojoutils,
purrr,
Expand All @@ -28,6 +29,7 @@ Imports:
tidyr
Remotes:
openjusticeok/ojodb,
openjusticeok/ojoregex,
openjusticeok/ojoslackr,
openjusticeok/ojoutils
Suggests:
Expand Down
8 changes: 7 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -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}`
Expand Down
4 changes: 2 additions & 2 deletions R/attach.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
core <- c("ojodb", "ojoslackr", "ojoutils")
core <- c("ojodb", "ojoregex", "ojoslackr", "ojoutils")

core_unloaded <- function() {
search <- paste0("package:", core)
Expand Down Expand Up @@ -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))
}
}
3 changes: 2 additions & 1 deletion R/ojoverse.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
# 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
ggplot2::ggplot
readr::read_csv
stringr::str_c
tidyr::nest
}
}

0 comments on commit c280b92

Please sign in to comment.