Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley committed Apr 11, 2016
1 parent 00ba600 commit e29d528
Show file tree
Hide file tree
Showing 7 changed files with 219 additions and 223 deletions.
5 changes: 2 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
Package: devtools
Title: Tools to Make Developing R Packages Easier
Version: 1.10.0.9000
Version: 1.11.0
Authors@R: c(
person("Hadley", "Wickham", , "hadley@rstudio.com", role = c("aut", "cre")),
person("Winston", "Chang", role = "aut"),
person("RStudio", role = "cph"),
person("R Core team", role = "ctb",
comment = "Some namespace and vignette code extracted from base R")
)
Encoding: UTF-8
Description: Collection of package development tools.
URL: https://github.com/hadley/devtools
BugReports: https://github.com/hadley/devtools/issues
Expand Down Expand Up @@ -43,8 +44,6 @@ Suggests:
rversions,
covr,
gmailr (> 0.7.0)
Remotes:
jimhester/gmailr
License: GPL (>= 2)
VignetteBuilder: knitr
RoxygenNote: 5.0.1
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# devtools 1.10.0.9000
# devtools 1.11.0

## Infrastructure helpers

Expand Down
4 changes: 2 additions & 2 deletions R/has-devel.r
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# The checking code looks for the objects in the package namespace, so defining
# dll here removes the following NOTE
# Registration problem:
# Evaluating dll$foo during check gives error
# object 'dll' not found:
# Evaluating 'dll$foo' during check gives error
# 'object 'dll' not found':
# .C(dll$foo, 0L)
# See https://github.com/wch/r-source/blob/d4e8fc9832f35f3c63f2201e7a35fbded5b5e14c/src/library/tools/R/QC.R#L1950-L1980
# Setting the class is needed to avoid a note about returning the wrong class.
Expand Down
39 changes: 11 additions & 28 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,44 +1,27 @@
## Test environments
* local OS X install, R 3.2.1
* ubuntu 12.04 (on travis-ci), R 3.2.2
* local OS X install, R 3.2.4
* ubuntu 12.04 (on travis-ci), R 3.2.4
* win-builder (devel and release)

## R CMD check results
There were no ERRORs or WARNINGs.

There were 2 NOTEs:

* checking foreign function calls ... NOTE
Evaluating ‘dll$foo’ during check gives error

This is part of a dynamic check to see if the user can compile packages
so `dll` does not exist during checking.
There were no ERRORs, WARNINGs, and 1 NOTES.

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

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

* checking R code for possible problems ... NOTE
Found the following calls to attach():
File 'devtools/R/package-env.r':
attach(NULL, name = pkg_env_name(pkg))
File 'devtools/R/shims.r':
attach(e, name = "devtools_shims", warn.conflicts = FALSE)

These are needed because devtools simulates package loading, and hence
needs to attach environments to the search path.
(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.)

## Downstream dependencies

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

* There were 2 ERRORs:
* There was 1 ERROR:

* assertive.reflection: this is an error in `\donttest()` which is
now found by devtools (since it always does `--run-donttest`.
* BrailleR: checking examples ... ERROR

Appears to be graphics related, so unlikely to be related to devtools.

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

0 comments on commit e29d528

Please sign in to comment.