diff --git a/DESCRIPTION b/DESCRIPTION index 26862a9..c4a28d3 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: goodpractice Title: Advice on R Package Building -Version: 1.0.3 +Version: 1.0.4-1 Authors@R: c(person(given = "Ascent Digital Services UK Limited", role = "cph", @@ -44,7 +44,7 @@ Description: Give advice about good practices when building R packages. Advice includes functions and syntax to avoid, package structure, code complexity, code formatting, etc. License: MIT + file LICENSE -URL: https://github.com/mangothecat/goodpractice +URL: https://mangothecat.github.io/goodpractice/, https://github.com/mangothecat/goodpractice BugReports: https://github.com/mangothecat/goodpractice/issues Imports: clisymbols, @@ -71,7 +71,7 @@ VignetteBuilder: knitr Encoding: UTF-8 Roxygen: list(markdown = TRUE) -RoxygenNote: 7.1.2 +RoxygenNote: 7.3.1 Config/testthat/edition: 3 Collate: 'api.R' diff --git a/NEWS.md b/NEWS.md index a68bb70..33aa869 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,8 @@ +# goodpractice 1.0.4-1 + +* CRAN fixes - skipping failing test and adding \alias{goodpractice} to package Rd +* Adding pkgdown site to DESCRIPTION (#160, @olivroy) + # goodpractice 1.0.3 Additions: diff --git a/man/customization.Rd b/man/customization.Rd index 4cf39e3..1ab67ce 100644 --- a/man/customization.Rd +++ b/man/customization.Rd @@ -34,11 +34,11 @@ Defining custom preparations and checks } \section{Functions}{ \itemize{ -\item \code{make_prep}: Create a preparation function +\item \code{make_prep()}: Create a preparation function -\item \code{make_check}: Create a check function -}} +\item \code{make_check()}: Create a check function +}} \examples{ # make a preparation function url_prep <- make_prep( diff --git a/man/goodpractice-package.Rd b/man/goodpractice-package.Rd index 7f9a345..a44f3e9 100644 --- a/man/goodpractice-package.Rd +++ b/man/goodpractice-package.Rd @@ -2,6 +2,7 @@ % Please edit documentation in R/package.R \docType{package} \name{goodpractice-package} +\alias{goodpractice-package} \title{goodpractice: Advice on R Package Building} \description{ Give advice about good practices when building R packages. Advice includes @@ -11,6 +12,7 @@ formatting, etc. \seealso{ Useful links: \itemize{ + \item \url{https://mangothecat.github.io/goodpractice/} \item \url{https://github.com/mangothecat/goodpractice} \item Report bugs at \url{https://github.com/mangothecat/goodpractice/issues} }