Skip to content

Commit

Permalink
0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Pakillo committed Oct 22, 2023
1 parent eb593b1 commit c9ccbbd
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]",
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions tests/testthat/test-utils_citations.R
Original file line number Diff line number Diff line change
Expand Up @@ -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"))

Expand Down

0 comments on commit c9ccbbd

Please sign in to comment.