From 224558ef4f303ca3e3962663fb7c56fb85522ab9 Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Fri, 1 Nov 2024 07:57:51 -0500 Subject: [PATCH] Roll micro release and date, update NEWS --- ChangeLog | 5 +++++ DESCRIPTION | 4 ++-- inst/NEWS.Rd | 2 ++ inst/include/Rcpp/config.h | 4 ++-- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index f0da236d0..874bdbdc9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2024-11-01 Dirk Eddelbuettel + + * DESCRIPTION (Version, Date): Roll micro version to 1.0.13.5 + * inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem + 2024-10-31 Kevin Ushey * inst/include/Rcpp/r/compat.h: Require R (>= 4.5.0) for new APIs diff --git a/DESCRIPTION b/DESCRIPTION index 3efa88a22..1a4933735 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: Rcpp Title: Seamless R and C++ Integration -Version: 1.0.13.4 -Date: 2024-10-26 +Version: 1.0.13.5 +Date: 2024-11-01 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 de1822d1b..f88398d01 100644 --- a/inst/NEWS.Rd +++ b/inst/NEWS.Rd @@ -15,6 +15,8 @@ has been removed (Dirk in \ghpr{1335} fixing \ghpr{1334}) \item Compilation on DragonFlyBSD is now supported (Gábor Csárdi in \ghpr{1338}) + \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 Deployment: \itemize{ diff --git a/inst/include/Rcpp/config.h b/inst/include/Rcpp/config.h index 6dc726cb2..8673fc44e 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,4) -#define RCPP_DEV_VERSION_STRING "1.0.13.4" +#define RCPP_DEV_VERSION RcppDevVersion(1,0,13,5) +#define RCPP_DEV_VERSION_STRING "1.0.13.5" #endif