Skip to content

Commit 7eba3ca

Browse files
committed
Use Authors@R (#1327)
1 parent 19328ad commit 7eba3ca

File tree

2 files changed

+49
-5
lines changed

2 files changed

+49
-5
lines changed

ChangeLog

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
2024-08-31 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Authors@R): Added
4+
5+
2024-08-28 Dirk Eddelbuettel <[email protected]>
6+
7+
* R/Rcpp.package.skeleton.R: Create DESCRIPTION with Auhors@R fiel
8+
* inst/tinytest/test_rcpp_package_skeleton.R: Adjust tests
9+
10+
2024-08-20 Dirk Eddelbuettel <[email protected]>
11+
12+
* inst/tinytest/test_sugar.R: Skip one more NA related test on arm64
13+
and macOS as failure is seen at r-universe on arm64
14+
15+
* .github/workflows/macos.yaml: Add basic r-ci setup but dialed-down
16+
to macOS only (as Linux is covered via multiple Docker setups)
17+
18+
2024-08-19 Dirk Eddelbuettel <[email protected]>
19+
20+
* Contributing.md: Refreshed content
21+
22+
2024-07-30 Dirk Eddelbuettel <[email protected]>
23+
24+
* vignettes/rmd/Rcpp-modules.Rmd (are): Add short two-sentence
25+
illustration following GitHub issue #1322
26+
27+
2024-07-24 Dirk Eddelbuettel <[email protected]>
28+
29+
* DESCRIPTION (Version, Date): Roll micro version
30+
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
31+
132
2024-07-11 Dirk Eddelbuettel <[email protected]>
233

334
* DESCRIPTION (Date, Version): Release 1.0.13

DESCRIPTION

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,23 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
3-
Version: 1.0.13
4-
Date: 2024-07-11
5-
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
6-
Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers
7-
Maintainer: Dirk Eddelbuettel <[email protected]>
3+
Version: 1.0.13-1
4+
Date: 2024-11-01
5+
Authors@R: c(person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "[email protected]",
6+
comment = c(ORCID = "0000-0001-6419-907X")),
7+
person("Romain", "Francois", role = "aut",
8+
comment = c(ORCID = "0000-0002-2444-4226")),
9+
person("JJ", "Allaire", role = "aut",
10+
comment = c(ORCID = "0000-0003-0174-9868")),
11+
person("Kevin", "Ushey", role = "aut",
12+
comment = c(ORCID = "0000-0003-2880-7407")),
13+
person("Qiang", "Kou", role = "aut",
14+
comment = c(ORCID = "0000-0001-6786-5453")),
15+
person("Nathan", "Russell", role = "aut"),
16+
person("Iñaki", "Ucar", role = "aut",
17+
comment = c(ORCID = "0000-0001-6403-5550")),
18+
person("Doug", "Bates", role = "aut",
19+
comment = c(ORCID = "0000-0001-8316-9503")),
20+
person("John", "Chambers", role = "aut"))
821
Description: The 'Rcpp' package provides R functions as well as C++ classes which
922
offer a seamless integration of R and C++. Many R data types and objects can be
1023
mapped back and forth to C++ equivalents which facilitates both writing of new

0 commit comments

Comments
 (0)