diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5a2be0bd..463419a2 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -321,7 +321,7 @@ Check in whichever of the files generated by `pkgdown` seem relevant to you. Any ### Test on latest development version of R (i.e. "R-Devel") -This is a CRAN requirement, and yes, it's a pain. Luckily, Dirk Eddelbuettel and friends maintain docker images to make this process (a little) easier. Specifically, the [rocker/r-devel](https://hub.docker.com/r/rocker/r-devel) image provides a great jumping off point. Note, this image is rebuilt every few days, so if you _absolutely need_ to have _bleeding edge_ r-devel and have a extra hour to spare, follow [this docker process](https://alexandereckert.com/post/testing-r-packages-with-latest-r-devel/) from Alexander Eckert. +This is a CRAN requirement, and yes, it's a pain. Luckily, Dirk Eddelbuettel and friends maintain docker images to make this process (a little) easier. Specifically, the [rocker/drd](https://hub.docker.com/r/rocker/drd) image from [the Rocker Project](https://www.rocker-project.org/images/) provides a great jumping off point. It's a lighter r-devel image. Note, this image is rebuilt every few days, so if you _absolutely need_ to have _bleeding edge_ r-devel and have a extra hour to spare, follow [this docker process](https://alexandereckert.com/post/testing-r-packages-with-latest-r-devel/) from Alexander Eckert. 1. Navigate to the base directory of the package. 2. Build the r-devel pkgnet docker image and run CRAN checks via these commands: diff --git a/DESCRIPTION b/DESCRIPTION index 8d947a08..aadbba5b 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -38,5 +38,4 @@ Suggests: License: BSD_3_clause + file LICENSE URL: https://github.com/uptake/pkgnet, https://uptake.github.io/pkgnet/ BugReports: https://github.com/uptake/pkgnet/issues -LazyData: TRUE RoxygenNote: 7.1.0 diff --git a/NEWS.md b/NEWS.md index 42ada0b6..edfc9130 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,6 +1,11 @@ # pkgnet (dev) +## NEW FEATURES +* Node coloring in DependencyReporter (#243) + +## CHANGES +* Removed LazyData field to accomodate change in CRAN policy. (#289) -_No changes since latest release_ +## BUGFIXES # pkgnet 0.4.1 diff --git a/release_testing/dockerfile b/release_testing/dockerfile index dbb9236e..4bf4208a 100644 --- a/release_testing/dockerfile +++ b/release_testing/dockerfile @@ -2,7 +2,7 @@ # intended build command to be run from package root: # docker build -f release_testing\dockerfile -t pkgnet_rdevel . -FROM rocker/r-devel +FROM rocker/drd # Copy test script into container COPY release_testing/r_devel_check.sh .