diff --git a/ChangeLog b/ChangeLog index 10e4f52ac..d08c660f2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-10-04 Dirk Eddelbuettel + + * DESCRIPTION (Version, Date): Roll micro version to 1.0.13.3 + * inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem + 2024-09-29 Dirk Eddelbuettel * inst/include/Rcpp/vector/Vector.h: Remove a cast as R_xlen_t diff --git a/DESCRIPTION b/DESCRIPTION index e87fbf574..10f0e91ad 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: Rcpp Title: Seamless R and C++ Integration -Version: 1.0.13.2 -Date: 2024-09-17 +Version: 1.0.13.3 +Date: 2024-10-04 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 2e41de671..31fecc4df 100644 --- a/inst/NEWS.Rd +++ b/inst/NEWS.Rd @@ -11,14 +11,22 @@ \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 An errorneous cast to \code{int} affecting large return object + has been removed (Dirk in \ghpr{1335} fixing \ghpr{1334}) + } + \item Changes in Rcpp Deployment: + \itemize{ \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}) + } + \item Changes in Rcpp Documentation: + \itemize{ + \item The Rcpp Modules vignette was extended slightly following + \ghit{1322} + \item 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 11341fa7c..c2b35689b 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,2) -#define RCPP_DEV_VERSION_STRING "1.0.13.2" +#define RCPP_DEV_VERSION RcppDevVersion(1,0,13,3) +#define RCPP_DEV_VERSION_STRING "1.0.13.3" #endif