Skip to content

Commit

Permalink
fix pkg load, updated docs for 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Qile0317 committed Aug 1, 2024
1 parent 632f155 commit d980aec
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# FastUtils (development version)
# FastUtils 0.2.0

## Additions

Expand Down
2 changes: 1 addition & 1 deletion R/packageLoading.R
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ createPkgLoader <- function(lib = .libPaths()[1]) {
if (is.null(packagepath)) return()

if (source == "GitHub") {
package <- strsplit(packagepath, "/")[[1]][2]
package <- strsplit(packagepath, "/|@")[[1]][2]

} else {
package <- packagepath
Expand Down
6 changes: 5 additions & 1 deletion cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## R CMD check results

0 errors | 0 warnings | 0 notes
0 errors | 0 warnings | 1 notes

The NOTE about an unused `lifecycle` import is a false positive.

This package was checked against ubuntu, macOS, and windows devel release, and on ubuntu for oldrel 1-3.

0 comments on commit d980aec

Please sign in to comment.