Skip to content

Commit e29d528

Browse files
committed
Prepare for release
1 parent 00ba600 commit e29d528

File tree

7 files changed

+219
-223
lines changed

7 files changed

+219
-223
lines changed

DESCRIPTION

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
Package: devtools
22
Title: Tools to Make Developing R Packages Easier
3-
Version: 1.10.0.9000
3+
Version: 1.11.0
44
Authors@R: c(
55
person("Hadley", "Wickham", , "[email protected]", role = c("aut", "cre")),
66
person("Winston", "Chang", role = "aut"),
77
person("RStudio", role = "cph"),
88
person("R Core team", role = "ctb",
99
comment = "Some namespace and vignette code extracted from base R")
1010
)
11+
Encoding: UTF-8
1112
Description: Collection of package development tools.
1213
URL: https://github.com/hadley/devtools
1314
BugReports: https://github.com/hadley/devtools/issues
@@ -43,8 +44,6 @@ Suggests:
4344
rversions,
4445
covr,
4546
gmailr (> 0.7.0)
46-
Remotes:
47-
jimhester/gmailr
4847
License: GPL (>= 2)
4948
VignetteBuilder: knitr
5049
RoxygenNote: 5.0.1

NEWS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# devtools 1.10.0.9000
1+
# devtools 1.11.0
22

33
## Infrastructure helpers
44

R/has-devel.r

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# The checking code looks for the objects in the package namespace, so defining
22
# dll here removes the following NOTE
33
# Registration problem:
4-
# Evaluating dll$foo during check gives error
5-
# object 'dll' not found:
4+
# Evaluating 'dll$foo' during check gives error
5+
# 'object 'dll' not found':
66
# .C(dll$foo, 0L)
77
# See https://github.com/wch/r-source/blob/d4e8fc9832f35f3c63f2201e7a35fbded5b5e14c/src/library/tools/R/QC.R#L1950-L1980
88
# Setting the class is needed to avoid a note about returning the wrong class.

cran-comments.md

+11-28
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,27 @@
11
## Test environments
2-
* local OS X install, R 3.2.1
3-
* ubuntu 12.04 (on travis-ci), R 3.2.2
2+
* local OS X install, R 3.2.4
3+
* ubuntu 12.04 (on travis-ci), R 3.2.4
44
* win-builder (devel and release)
55

66
## R CMD check results
7-
There were no ERRORs or WARNINGs.
8-
9-
There were 2 NOTEs:
10-
11-
* checking foreign function calls ... NOTE
12-
Evaluating ‘dll$foo’ during check gives error
13-
14-
This is part of a dynamic check to see if the user can compile packages
15-
so `dll` does not exist during checking.
7+
There were no ERRORs, WARNINGs, and 1 NOTES.
168

179
* Found the following (possibly) invalid URLs:
1810
URL: https://cran.r-project.org/web/packages/policies.html
1911

2012
This is a false positive as this isn't a url to a package.
2113

22-
* checking R code for possible problems ... NOTE
23-
Found the following calls to attach():
24-
File 'devtools/R/package-env.r':
25-
attach(NULL, name = pkg_env_name(pkg))
26-
File 'devtools/R/shims.r':
27-
attach(e, name = "devtools_shims", warn.conflicts = FALSE)
28-
29-
These are needed because devtools simulates package loading, and hence
30-
needs to attach environments to the search path.
14+
(Note that devtools requires >=0.7.0 of the suggested package gmailr, but the current CRAN version is 0.6.0. This isn't flagged as a problem, but the maintainer is preparing a release in the very near future.)
3115

3216
## Downstream dependencies
3317

34-
* I ran R CMD check on all 75 downstream dependencies of devtools.
35-
Summary at: https://github.com/hadley/devtools/blob/master/revdep/summary.md
18+
* I ran R CMD check on all 77 downstream dependencies of devtools.
19+
Summary at: https://github.com/hadley/devtools/blob/master/revdep/
3620

37-
* There were 2 ERRORs:
21+
* There was 1 ERROR:
3822

39-
* assertive.reflection: this is an error in `\donttest()` which is
40-
now found by devtools (since it always does `--run-donttest`.
23+
* BrailleR: checking examples ... ERROR
24+
25+
Appears to be graphics related, so unlikely to be related to devtools.
4126

42-
* jiebaR: this looks like a problem caused by the moving of roxygen2 from
43-
imports to suggests. I'm working with the authors to get a updated version
44-
to CRAN ASAP.
27+
* I failed to install dependencies for: biomartr, demi, FedData, myTAI, NMF

0 commit comments

Comments
 (0)