Skip to content

Commit b994341

Browse files
authored
Merge pull request #17 from mojaveazure/develop
SeuratObject v4.0.2
2 parents 6d84746 + c07062b commit b994341

File tree

4 files changed

+10
-17
lines changed

4 files changed

+10
-17
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: SeuratObject
22
Type: Package
33
Title: Data Structures for Single Cell Data
4-
Version: 4.0.1
5-
Date: 2021-05-07
4+
Version: 4.0.2
5+
Date: 2021-06-08
66
Authors@R: c(
77
person(given = 'Rahul', family = 'Satija', email = '[email protected]', role = 'aut', comment = c(ORCID = '0000-0001-9448-8833')),
88
person(given = 'Andrew', family = 'Butler', email = '[email protected]', role = 'aut', comment = c(ORCID = '0000-0003-3608-0463')),

NEWS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# SeuratObject 4.0.2
2+
3+
## Changed
4+
- Provide default option for `Seurat.checkdots` option if option is not set (#16)
5+
16
# SeuratObject 4.0.1
27

38
## Added

R/utils.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -495,7 +495,7 @@ CheckDots <- function(..., fxns = NULL) {
495495
paste(unused, collapse = ', ')
496496
)
497497
switch(
498-
EXPR = getOption(x = "Seurat.checkdots"),
498+
EXPR = getOption(x = "Seurat.checkdots", default = 'warn'),
499499
"warn" = warning(msg, call. = FALSE, immediate. = TRUE),
500500
"stop" = stop(msg),
501501
"silent" = NULL,

cran-comments.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SeuratObject v4.0.1
1+
# SeuratObject v4.0.2
22

33
## Test environments
44
* local ubuntu 20.04 install, R 4.0.5
@@ -7,19 +7,7 @@
77

88
## R CMD check results
99

10-
There were no ERRORs, WARNINGs
11-
12-
There was one NOTE:
13-
14-
* checking CRAN incoming feasibility ... NOTE
15-
Maintainer: ‘Paul Hoffman <[email protected]>
16-
17-
New maintainer:
18-
Paul Hoffman <[email protected]>
19-
Old maintainer(s):
20-
Paul Hoffman <[email protected]>
21-
22-
We are switching email addresses for the maintainer
10+
There were no ERRORs, WARNINGs, or NOTEs
2311

2412
## Downstream dependencies
2513

0 commit comments

Comments
 (0)