From b0f409de82c57611131c3fceff17282f8f0397ad Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Thu, 1 Aug 2024 17:04:25 -0500 Subject: [PATCH] Add an Authors@R field with three public ORCID IDs --- ChangeLog | 2 ++ DESCRIPTION | 10 ++++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0a0500b7..f4cbb23a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,8 @@ * DESCRIPTION (Version, Date): Increment micro version, update date + * DESCRIPTION (Authors@R): Added, with ORDIDs for Dirk, Romain, Doug + 2024-08-01 Conrad Sanderson * inst/CITATION: Reverse order of items displayed diff --git a/DESCRIPTION b/DESCRIPTION index 5ac5f7b5..80296071 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -3,8 +3,14 @@ Type: Package Title: 'Rcpp' Integration for the 'Armadillo' Templated Linear Algebra Library Version: 14.0.0-1-1 Date: 2024-08-01 -Author: Dirk Eddelbuettel, Romain Francois, Doug Bates, Binxiang Ni, and Conrad Sanderson -Maintainer: Dirk Eddelbuettel +Authors@R: c(person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "edd@debian.org", + comment = c(ORCID = "0000-0001-6419-907X")), + person("Romain", "Francois", role = "aut", + comment = c(ORDID = "0000-0002-2444-4226")), + person("Doug", "Bates", role = "aut", + comment = c(ORCID="0000-0001-8316-9503")), + person("Binxiang", "Ni", role = "aut"), + person("Conrad", "Sanderson", role = "aut")) Description: 'Armadillo' is a templated C++ linear algebra library (by Conrad Sanderson) that aims towards a good balance between speed and ease of use. Integer, floating point and complex numbers are supported, as