Skip to content

Commit

Permalink
Merge pull request #290 from uptake/release/0.4.2
Browse files Browse the repository at this point in the history
Release/0.4.2 Node Coloring Changes & Resolving CRAN Checks
  • Loading branch information
bburns632 authored Dec 23, 2021
2 parents d209b32 + 14d7263 commit b37d432
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,10 +327,12 @@ This is a CRAN requirement, and yes, it's a pain. Luckily, Dirk Eddelbuettel an
2. Build the r-devel pkgnet docker image and run CRAN checks via these commands:
```
# On Windows
docker pull rocker/drd
docker build -f release_testing\dockerfile -t pkgnet_rdevel .
docker run --rm -ti -v %cd%:/RPackage pkgnet_rdevel ./r_devel_check.sh
# On Mac
docker pull rocker/drd
docker build -f release_testing/dockerfile -t pkgnet_rdevel .
docker run --rm -ti -v $(pwd):/RPackage pkgnet_rdevel ./r_devel_check.sh
```
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: pkgnet
Type: Package
Title: Get Network Representation of an R Package
Version: 0.4.1.9999
Version: 0.4.2
Authors@R: c(
person("Brian", "Burns", email = "brian.burns.opensource@gmail.com", role = c("aut", "cre")),
person("James", "Lamb", email = "jaylamb20@gmail.com", role = c("aut")),
Expand Down
8 changes: 8 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
# pkgnet (dev)
## NEW FEATURES

## CHANGES

## BUGFIXES

# pkgnet 0.4.2
## NEW FEATURES
* Node coloring in DependencyReporter (#243)

## CHANGES
* Removed LazyData field to accomodate change in CRAN policy. (#289)

## BUGFIXES
* Updated Codecov URL.

# pkgnet 0.4.1

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

[![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version-last-release/pkgnet)](https://cran.r-project.org/package=pkgnet) [![CRAN\_Download\_Badge](https://cranlogs.r-pkg.org/badges/grand-total/pkgnet)](https://cran.r-project.org/package=pkgnet) [![GitHub Actions Build Status](https://github.com/uptake/pkgnet/workflows/Tests/badge.svg?branch=main)](https://github.com/uptake/pkgnet/actions?query=workflow%3ATests+branch%3Amain)
[![Appveyor Build status](https://ci.appveyor.com/api/projects/status/github/uptake/pkgnet?branch=main&svg=true)](https://ci.appveyor.com/project/jameslamb/pkgnet)
[![codecov](https://codecov.io/gh/uptake/pkgnet/branch/main/graph/badge.svg)](https://codecov.io/gh/uptake/pkgnet)
[![Lifecycle badge](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle/)
[![codecov](https://app.codecov.io/gh/uptake/pkgnet/branch/main/graph/badge.svg)](https://app.codecov.io/gh/uptake/pkgnet)
[![Lifecycle badge](https://lifecycle.r-lib.org/articles/figures/lifecycle-stable.svg)](https://lifecycle.r-lib.org/articles/stages.html)

## Introduction

Expand Down
8 changes: 8 additions & 0 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CRAN Submission History

## v 0.4.2

### Submission on December 21st, 2021
Some insignificant submission note linking back to #290

### CRAN Response
None. We made it through the auto-approval process with no issues.

## v 0.4.1

### Submission on March 29th, 2020
Expand Down
18 changes: 17 additions & 1 deletion release_testing/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,23 @@ RUN chmod +x r_devel_check.sh

# Install System Dependencies
RUN apt-get update
RUN apt-get install -y pandoc pandoc-citeproc qpdf ghostscript libssl-dev libxml2-dev
RUN apt-get install -y pandoc \
pandoc-citeproc \
qpdf \
ghostscript \
libssl-dev \
libxml2-dev \
gfortran \
libblas-dev \
liblapack-dev \
libfontconfig1-dev \
libharfbuzz-dev \
libfribidi-dev \
libfreetype6-dev \
libpng-dev \
libtiff5-dev \
libjpeg-dev \
texlive

# Install Devtools
RUN RD -e 'install.packages(c("xml2", "rversions", "roxygen2", "devtools"), repos = "https://cloud.r-project.org")'
Expand Down

0 comments on commit b37d432

Please sign in to comment.