Skip to content

Commit 0905d92

Browse files
authored
Use lsInteral3 instead of lsInternal (#1362)
* Per CCed email from Vienna: use lsInteral3 instead of lsInternal * Roll micro version and date (chiefly to have a rev.dep tag)
1 parent 34997ab commit 0905d92

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

ChangeLog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2025-03-13 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll micro version and date
4+
* inst/include/Rcpp/config.h: Idem
5+
6+
* inst/include/Rcpp/Environment.h: Switch from R_lsInternal to
7+
R_lsInternal3 as the former is now outlawed
8+
19
2025-03-10 Dirk Eddelbuettel <[email protected]>
210

311
* DESCRIPTION (Version, Date): Roll micro version and date

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
3-
Version: 1.0.14.5
4-
Date: 2025-03-10
3+
Version: 1.0.14.6
4+
Date: 2025-03-13
55
Authors@R: c(person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "[email protected]",
66
comment = c(ORCID = "0000-0001-6419-907X")),
77
person("Romain", "Francois", role = "aut",

inst/include/Rcpp/Environment.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ namespace Rcpp{
8484
*/
8585
SEXP ls(bool all) const {
8686
SEXP env = Storage::get__() ;
87-
return R_lsInternal( env, all ? TRUE : FALSE ) ;
87+
return R_lsInternal3(env, all ? TRUE : FALSE, TRUE);
8888
return R_NilValue ;
8989
}
9090

inst/include/Rcpp/config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#define RCPP_VERSION_STRING "1.0.14"
3131

3232
// the current source snapshot (using four components, if a fifth is used in DESCRIPTION we ignore it)
33-
#define RCPP_DEV_VERSION RcppDevVersion(1,0,14,5)
34-
#define RCPP_DEV_VERSION_STRING "1.0.14.5"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,14,6)
34+
#define RCPP_DEV_VERSION_STRING "1.0.14.6"
3535

3636
#endif

0 commit comments

Comments
 (0)