From be046cc199a4b2b637e1470967460c6c71807c90 Mon Sep 17 00:00:00 2001 From: mpadge Date: Wed, 15 May 2024 14:06:55 +0200 Subject: [PATCH] add @chartgerink as pkg aut --- DESCRIPTION | 6 ++++-- NEWS.md | 5 +++++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 46617ac..00afa72 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,10 @@ Package: allcontributors Title: Acknowledge all Contributors to a Project Version: 0.1.1.015 -Authors@R: - person("Mark", "Padgham", , "mark.padgham@email.com", role = c("aut", "cre")) +Authors@R: c( + person("Mark", "Padgham", , "mark.padgham@email.com", role = c("aut", "cre")), + person("Chris", "Hartgerink", role = "aut") + ) Description: Acknowledge all contributors to a project via a single function call. The function appends to a 'README' or other specified file(s) a table with names of all individuals who contributed via code diff --git a/NEWS.md b/NEWS.md index f3abc0a..2a886b5 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,10 @@ # Development +## Major changes + +- `add_contributors()` now accepts main `repo` parameter as a vector of repository locations to be used to collate a single allcontributors list; thanks to @chartgerink via #35. +- Chris Hartgerink (@chartgerink) added as new author; thanks to both #35 and #37 + ## Minor changes - Add a rate limit checker for the GitHub API calls. Will warn if rate limit is exceeded (thanks to @chartgerink via #37).