From b5f358af2f1db8e0b43cb0050d44ece079b16e98 Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Tue, 17 Sep 2024 12:16:06 -0500 Subject: [PATCH] Roll micro version and date, update NEWS for recent changes --- ChangeLog | 7 ++++++- DESCRIPTION | 4 ++-- inst/NEWS.Rd | 8 ++++++++ inst/include/Rcpp/config.h | 4 ++-- 4 files changed, 18 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 67f3c401f..5ae7d1b59 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-09-17 Dirk Eddelbuettel + + * DESCRIPTION (Version, Date): Roll micro version + * inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem + 2024-09-12 Iñaki Ucar * vignettes/.gitignore: Refinement to ignore more files under rmd/ @@ -10,7 +15,7 @@ 2024-08-28 Dirk Eddelbuettel - * R/Rcpp.package.skeleton.R: Create DESCRIPTION with Auhors@R fiel + * R/Rcpp.package.skeleton.R: Create DESCRIPTION with Auhors@R file * inst/tinytest/test_rcpp_package_skeleton.R: Adjust tests 2024-08-20 Dirk Eddelbuettel diff --git a/DESCRIPTION b/DESCRIPTION index c5b0ef5c6..e87fbf574 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: Rcpp Title: Seamless R and C++ Integration -Version: 1.0.13.1 -Date: 2024-07-24 +Version: 1.0.13.2 +Date: 2024-09-17 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", diff --git a/inst/NEWS.Rd b/inst/NEWS.Rd index db5bb3c68..2e41de671 100644 --- a/inst/NEWS.Rd +++ b/inst/NEWS.Rd @@ -11,6 +11,14 @@ \ghpr{1314} fixing \ghit{1313}) \item The \code{SET_TYPEOF} function and macro is no longer used (Kevin in \ghpr{1315} fixing \ghit{1312}) + \item The Rcpp Modules vignette was extended slightly following + \ghit{1322} + \item One unit tests for arm64 macOS has been adjusted; a macOS + continuous integration runner was added + \item Authors@R is now used in DESCRIPTION as mandated by CRAN, the + \code{Rcpp.package.skeleton()} function also creates it + \item The pdf vignettes have been regenerated under Ghostscript 10.03.1 + to avoid a false positive by a Windows virus scanner (Iñaki in \ghpr{1331}) } } } diff --git a/inst/include/Rcpp/config.h b/inst/include/Rcpp/config.h index 5ae0684f3..11341fa7c 100644 --- a/inst/include/Rcpp/config.h +++ b/inst/include/Rcpp/config.h @@ -30,7 +30,7 @@ #define RCPP_VERSION_STRING "1.0.13" // the current source snapshot (using four components, if a fifth is used in DESCRIPTION we ignore it) -#define RCPP_DEV_VERSION RcppDevVersion(1,0,13,1) -#define RCPP_DEV_VERSION_STRING "1.0.13.1" +#define RCPP_DEV_VERSION RcppDevVersion(1,0,13,2) +#define RCPP_DEV_VERSION_STRING "1.0.13.2" #endif