diff --git a/ChangeLog b/ChangeLog index dc08c3852..d94fd8dcd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-11-25 Dirk Eddelbuettel + + * DESCRIPTION (Version, Date): Roll micro version to 1.0.13.6 + * inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem + 2024-11-25 Simon Guest * src/attributes.cpp: fix CPP source having to be writable diff --git a/DESCRIPTION b/DESCRIPTION index 1a4933735..1eec8dc2d 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: Rcpp Title: Seamless R and C++ Integration -Version: 1.0.13.5 -Date: 2024-11-01 +Version: 1.0.13.6 +Date: 2024-11-25 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 e5b87eca5..a88e87e4f 100644 --- a/inst/NEWS.Rd +++ b/inst/NEWS.Rd @@ -18,6 +18,11 @@ \item Use read-only \code{VECTOR_PTR} and \code{STRING_PTR} only with with R 4.5.0 or later (Kevin in \ghpr{1342} fixing \ghit{1341}) } + \item Changes in Rcpp Attributes: + \itemize{ + \item The \code{sourceCpp()} function can now handle input files with + read-only modes (Simon Guest in \ghpr{1346} fixing \ghit{1345}) + } \item Changes in Rcpp Deployment: \itemize{ \item One unit tests for arm64 macOS has been adjusted; a macOS @@ -31,7 +36,10 @@ \item The Rcpp Modules vignette was extended slightly following \ghit{1322} (Dirk) \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}) + avoid a false positive by a Windows virus scanner (Iñaki in + \ghpr{1331}) + \item A (large) number of (old) typos have been corrected in the + vignettes (Marco Colombo in \ghpr{1344}) } } } diff --git a/inst/include/Rcpp/config.h b/inst/include/Rcpp/config.h index 8673fc44e..ee6943b37 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,5) -#define RCPP_DEV_VERSION_STRING "1.0.13.5" +#define RCPP_DEV_VERSION RcppDevVersion(1,0,13,6) +#define RCPP_DEV_VERSION_STRING "1.0.13.6" #endif