diff --git a/.zenodo.json b/.zenodo.json index 603587ed..9dc0f72b 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -1,6 +1,6 @@ { "title": ["checklist: A Thorough and Strict Set of Checks for R Packages and Source Code"], - "version": ["0.2.1"], + "version": ["0.2.2"], "description": ["An opinated set of rules for R packages and R source code projects."], "creators": [ { diff --git a/CITATION.cff b/CITATION.cff index aeb2d5b0..b6c9aac8 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -11,7 +11,7 @@ contact: - email: info@inbo.be name: Research Institute for Nature and Forest title: 'checklist: A Thorough and Strict Set of Checks for R Packages and Source Code' -version: 0.2.1 +version: 0.2.2 abstract: An opinated set of rules for R packages and R source code projects. license: GPL-3.0 type: software diff --git a/DESCRIPTION b/DESCRIPTION index fbaee13d..02617170 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Type: Package Package: checklist Title: A Thorough and Strict Set of Checks for R Packages and Source Code -Version: 0.2.1 +Version: 0.2.2 Authors@R: c( person("Thierry", "Onkelinx", , "thierry.onkelinx@inbo.be", role = c("aut", "cre"), comment = c(ORCID = "0000-0001-8804-4216")), diff --git a/NEWS.md b/NEWS.md index 037383de..67818e5b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,9 @@ +# checklist 0.2.2 + +## Bugfix + +* Update URLS to [`lintr`](https://github.com/r-lib/lintr). + # checklist 0.2.1 ## Bugfix @@ -12,7 +18,7 @@ ## Bugfix * `update_package()` escapes double quotes in the abstract of `inst/CITATION`. -* Docker image uses the development version of [`lintr`](https://github.com/jimhester/lintr) +* Docker image uses the development version of [`lintr`](https://github.com/r-lib/lintr) * `check_source()` handles projects with [`renv`](https://rstudio.github.io/renv/) on GitHub Actions. # checklist 0.1.14 diff --git a/inst/CITATION b/inst/CITATION index bbfd7fd2..deb2c4bf 100644 --- a/inst/CITATION +++ b/inst/CITATION @@ -2,12 +2,12 @@ citHeader("To cite `checklist` in publications please use:") # begin checklist entry citEntry( entry = "Manual", - title = "checklist: A Thorough and Strict Set of Checks for R Packages and Source Code. Version 0.2.1", + title = "checklist: A Thorough and Strict Set of Checks for R Packages and Source Code. Version 0.2.2", author = c(person(given = "Thierry", family = "Onkelinx")), year = 2021, url = "https://inbo.github.io/checklist/", abstract = "An opinated set of rules for R packages and R source code projects.", - textVersion = "Onkelinx, Thierry (2021) checklist: A Thorough and Strict Set of Checks for R Packages and Source Code. Version 0.2.1. https://inbo.github.io/checklist/, https://github.com/inbo/checklist, https://doi.org/10.5281/zenodo.4028303", + textVersion = "Onkelinx, Thierry (2021) checklist: A Thorough and Strict Set of Checks for R Packages and Source Code. Version 0.2.2. https://inbo.github.io/checklist/, https://github.com/inbo/checklist, https://doi.org/10.5281/zenodo.4028303", doi = "10.5281/zenodo.4028303", ) # end checklist entry diff --git a/vignettes/philosophy.Rmd b/vignettes/philosophy.Rmd index 334ba013..047fe522 100644 --- a/vignettes/philosophy.Rmd +++ b/vignettes/philosophy.Rmd @@ -44,7 +44,7 @@ The most visible part of a coding style is the naming convention. People use many different styles of naming conventions within the R ecosystem [@Baath2012]. Popular ones are `alllowercase`, `period.separated`, `underscore_separated`, `lowerCamelCase` and `UpperCamelCase`. We picked `underscore_separated` because that is the naming convention of the [`tidyverse`](https://www.tidyverse.org) packages. -It is also the default setting in the [`lintr`](https://github.com/jimhester/lintr/blob/master/README.md) package which we use to do the [static code analysis](https://en.wikipedia.org/wiki/Static_program_analysis). +It is also the default setting in the [`lintr`](https://github.com/r-lib/lintr/blob/master/README.md) package which we use to do the [static code analysis](https://en.wikipedia.org/wiki/Static_program_analysis). At first this seems a lot to memorise. RStudio makes things easier when you activate all diagnostic options (_Tools_ > _Global options_ > _Code_ > _Diagnostics_).