From 6449ed890a339d5eaba607308109b6dc0d9d83c6 Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Thu, 13 Mar 2025 11:44:30 -0500 Subject: [PATCH 1/2] Per CCed email from Vienna: use lsInteral3 instead of lsInternal --- ChangeLog | 5 +++++ inst/include/Rcpp/Environment.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1322ab147..d22920901 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2025-03-13 Dirk Eddelbuettel + + * inst/include/Rcpp/Environment.h: Switch from R_lsInternal to + R_lsInternal3 as the former is now outlawed + 2025-03-10 Dirk Eddelbuettel * DESCRIPTION (Version, Date): Roll micro version and date diff --git a/inst/include/Rcpp/Environment.h b/inst/include/Rcpp/Environment.h index 76779f2fb..901b3fb5e 100644 --- a/inst/include/Rcpp/Environment.h +++ b/inst/include/Rcpp/Environment.h @@ -84,7 +84,7 @@ namespace Rcpp{ */ SEXP ls(bool all) const { SEXP env = Storage::get__() ; - return R_lsInternal( env, all ? TRUE : FALSE ) ; + return R_lsInternal3(env, all ? TRUE : FALSE, TRUE); return R_NilValue ; } From 90eb1568e8f8b092f46b4fb5dc04d700c4b4a2d4 Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Thu, 13 Mar 2025 16:30:06 -0500 Subject: [PATCH 2/2] Roll micro version and date (chiefly to have a rev.dep tag) --- ChangeLog | 3 +++ DESCRIPTION | 4 ++-- inst/include/Rcpp/config.h | 4 ++-- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index d22920901..af2bb1c3a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2025-03-13 Dirk Eddelbuettel + * DESCRIPTION (Version, Date): Roll micro version and date + * inst/include/Rcpp/config.h: Idem + * inst/include/Rcpp/Environment.h: Switch from R_lsInternal to R_lsInternal3 as the former is now outlawed diff --git a/DESCRIPTION b/DESCRIPTION index d1db21a7f..0b6488a1d 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: Rcpp Title: Seamless R and C++ Integration -Version: 1.0.14.5 -Date: 2025-03-10 +Version: 1.0.14.6 +Date: 2025-03-13 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/include/Rcpp/config.h b/inst/include/Rcpp/config.h index c3e75aaa3..639a46204 100644 --- a/inst/include/Rcpp/config.h +++ b/inst/include/Rcpp/config.h @@ -30,7 +30,7 @@ #define RCPP_VERSION_STRING "1.0.14" // the current source snapshot (using four components, if a fifth is used in DESCRIPTION we ignore it) -#define RCPP_DEV_VERSION RcppDevVersion(1,0,14,5) -#define RCPP_DEV_VERSION_STRING "1.0.14.5" +#define RCPP_DEV_VERSION RcppDevVersion(1,0,14,6) +#define RCPP_DEV_VERSION_STRING "1.0.14.6" #endif