Skip to content

Commit

Permalink
fix(CITATION): update deprecated functions
Browse files Browse the repository at this point in the history
From check on /win-builder.r-project.org:
Package CITATION file contains call(s) to old-style personList() or
as.personList().  Please use c() on person objects instead.
Package CITATION file contains call(s) to old-style citEntry().  Please
use bibentry() instead.
  • Loading branch information
DDorch committed Mar 15, 2023
1 parent 99df0eb commit eaa9c25
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions inst/CITATION
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ note <- sprintf("R package version %s", version)

citHeader("To cite hubeau in publications use:")

citEntry(
entry = "Manual",
bibentry(
bibtype = "Manual",
title = "hubeau: an R package for the Hub'Eau APIs",
author = personList(as.person("D. Dorchies"), as.person("P. Irz"), as.person("S. Grall")),
author = c(as.person("D. Dorchies"), as.person("P. Irz"), as.person("S. Grall")),
journal = "R news",
year = year,
volume = note,
Expand Down

0 comments on commit eaa9c25

Please sign in to comment.