Skip to content

Commit

Permalink
Attempted fix for #37
Browse files Browse the repository at this point in the history
  • Loading branch information
dbosak01 committed Sep 10, 2023
1 parent 3c18678 commit 77b73ed
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: sassy
Type: Package
Title: Makes 'R' Easier for Everyone
Version: 1.2.0
Version: 1.2.1
Author: David J. Bosak
Maintainer: David Bosak <dbosak01@gmail.com>
Description: A meta-package that aims to make 'R' easier for everyone,
Expand All @@ -23,9 +23,9 @@ Suggests:
tidylog,
magrittr,
covr
Imports: common,
Imports: fmtr(>= 1.5.9),
common(>= 1.0.8),
logr,
fmtr,
libr,
reporter,
procs,
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# sassy 1.2.1

* Fixed bug on install.

# sassy 1.2.0

* Added IQ and OQ validation routines.
Expand Down
4 changes: 2 additions & 2 deletions R/sassy.R
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@
#' @keywords internal
#' @name sassy
#' @aliases sassy-package
#' @import fmtr
#' @import common
#' @import logr
#' @import fmtr
#' @import libr
#' @import reporter
#' @import procs
Expand All @@ -97,9 +97,9 @@ NULL

.onAttach <- function(...) {

do.call("library", list("fmtr"))
do.call("library", list("common"))
do.call("library", list("logr"))
do.call("library", list("fmtr"))
do.call("library", list("libr"))
do.call("library", list("reporter"))
do.call("library", list("procs"))
Expand Down

0 comments on commit 77b73ed

Please sign in to comment.