Skip to content

Commit

Permalink
Merge pull request #17 from mojaveazure/develop
Browse files Browse the repository at this point in the history
SeuratObject v4.0.2
  • Loading branch information
mojaveazure authored Jun 9, 2021
2 parents 6d84746 + c07062b commit b994341
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 17 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: SeuratObject
Type: Package
Title: Data Structures for Single Cell Data
Version: 4.0.1
Date: 2021-05-07
Version: 4.0.2
Date: 2021-06-08
Authors@R: c(
person(given = 'Rahul', family = 'Satija', email = '[email protected]', role = 'aut', comment = c(ORCID = '0000-0001-9448-8833')),
person(given = 'Andrew', family = 'Butler', email = '[email protected]', role = 'aut', comment = c(ORCID = '0000-0003-3608-0463')),
Expand Down
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# SeuratObject 4.0.2

## Changed
- Provide default option for `Seurat.checkdots` option if option is not set (#16)

# SeuratObject 4.0.1

## Added
Expand Down
2 changes: 1 addition & 1 deletion R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ CheckDots <- function(..., fxns = NULL) {
paste(unused, collapse = ', ')
)
switch(
EXPR = getOption(x = "Seurat.checkdots"),
EXPR = getOption(x = "Seurat.checkdots", default = 'warn'),
"warn" = warning(msg, call. = FALSE, immediate. = TRUE),
"stop" = stop(msg),
"silent" = NULL,
Expand Down
16 changes: 2 additions & 14 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SeuratObject v4.0.1
# SeuratObject v4.0.2

## Test environments
* local ubuntu 20.04 install, R 4.0.5
Expand All @@ -7,19 +7,7 @@

## R CMD check results

There were no ERRORs, WARNINGs

There was one NOTE:

* checking CRAN incoming feasibility ... NOTE
Maintainer: ‘Paul Hoffman <[email protected]>

New maintainer:
Paul Hoffman <[email protected]>
Old maintainer(s):
Paul Hoffman <[email protected]>

We are switching email addresses for the maintainer
There were no ERRORs, WARNINGs, or NOTEs

## Downstream dependencies

Expand Down

0 comments on commit b994341

Please sign in to comment.