Skip to content

Commit 224558e

Browse files
committed
Roll micro release and date, update NEWS
1 parent 3ae789b commit 224558e

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2024-11-01 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll micro version to 1.0.13.5
4+
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
5+
16
2024-10-31 Kevin Ushey <[email protected]>
27

38
* inst/include/Rcpp/r/compat.h: Require R (>= 4.5.0) for new APIs

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.13.4
4-
Date: 2024-10-26
3+
Version: 1.0.13.5
4+
Date: 2024-11-01
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/NEWS.Rd

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
has been removed (Dirk in \ghpr{1335} fixing \ghpr{1334})
1616
\item Compilation on DragonFlyBSD is now supported (Gábor Csárdi in
1717
\ghpr{1338})
18+
\item Use read-only \code{VECTOR_PTR} and \code{STRING_PTR} only with
19+
with R 4.5.0 or later (Kevin in \ghpr{1342} fixing \ghit{1341})
1820
}
1921
\item Changes in Rcpp Deployment:
2022
\itemize{

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.13"
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,13,4)
34-
#define RCPP_DEV_VERSION_STRING "1.0.13.4"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,13,5)
34+
#define RCPP_DEV_VERSION_STRING "1.0.13.5"
3535

3636
#endif

0 commit comments

Comments
 (0)