From c9ccbbd5100f176bddcc997861c348940de8f039 Mon Sep 17 00:00:00 2001 From: Francisco Rodriguez-Sanchez Date: Sun, 22 Oct 2023 15:22:21 +0200 Subject: [PATCH] 0.2.4 --- DESCRIPTION | 2 +- NEWS.md | 4 ++++ README.md | 16 ++++++++-------- tests/testthat/test-utils_citations.R | 4 ++-- 4 files changed, 15 insertions(+), 11 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 5fe4919..5f1715a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: grateful Title: Facilitate Citation of R Packages -Version: 0.2.3 +Version: 0.2.4 Authors@R: c( person("Francisco", "Rodriguez-Sanchez", email = "f.rodriguez.sanc@gmail.com", diff --git a/NEWS.md b/NEWS.md index 1ea7e16..0843ced 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,8 @@ +# grateful 0.2.4 + +* Fixed a bug in package doc (cf. https://github.com/r-lib/roxygen2/issues/1491). + # grateful 0.2.3 * Fixed a bug when downloading 'dependent' citation styles from the official repository. diff --git a/README.md b/README.md index ede9a83..2732297 100644 --- a/README.md +++ b/README.md @@ -169,13 +169,13 @@ Use `scan_packages` scan_packages() pkg version 1 badger 0.2.3 -2 base 4.3.0 -3 knitr 1.43 +2 base 4.3.1 +3 knitr 1.44 4 pkgdown 2.0.7 -5 remotes 2.4.2 -6 renv 0.17.3 -7 rmarkdown 2.22 -8 testthat 3.1.9 +5 remotes 2.4.2.1 +6 renv 1.0.3 +7 rmarkdown 2.25 +8 testthat 3.2.0 9 tidyverse 2.0.0 10 visreg 2.7.0 ``` @@ -193,8 +193,8 @@ If you want to get the BibTeX references for a few specific packages: ``` r get_pkgs_info(pkgs = c("remotes", "renv"), out.dir = getwd()) #> pkg version citekeys -#> 1 remotes 2.4.2 remotes -#> 2 renv 0.17.3 renv +#> 1 remotes 2.4.2.1 remotes +#> 2 renv 1.0.3 renv ``` ### Using grateful with the tidyverse diff --git a/tests/testthat/test-utils_citations.R b/tests/testthat/test-utils_citations.R index dd71f40..e698e4f 100644 --- a/tests/testthat/test-utils_citations.R +++ b/tests/testthat/test-utils_citations.R @@ -47,9 +47,9 @@ test_that("Test get_citation_and_citekey function", { expect_identical(get_citation_and_citekey("grateful"), structure(c("@Manual{grateful,", title = "title = {{grateful}: Facilitate citation of R packages},", - author = " author = {{Francisco Rodríguez-Sánchez} and {Connor P. Jackson} and {Shaurita D. Hutchins}},", + author = " author = {{Francisco Rodriguez-Sanchez} and {Connor P. Jackson}},", year = " year = {2023},", - url = " url = {https://github.com/Pakillo/grateful},", + url = " url = {https://pakillo.github.io/grateful/},", "}"), class = "Bibtex"))