Skip to content

Commit f3e4b2d

Browse files
committed
Roll micro version and date, fill-in missing NEWS
1 parent ec160c2 commit f3e4b2d

File tree

4 files changed

+24
-6
lines changed

4 files changed

+24
-6
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2025-06-05 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll micro version and date
4+
* inst/include/Rcpp/config.h: Idem
5+
16
2025-06-02 Kevin Ushey <[email protected]>
27

38
* inst/include/Rcpp.h: Avoid copy when creating Language objects

DESCRIPTION

Lines changed: 2 additions & 2 deletions
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.14
4-
Date: 2025-05-27
3+
Version: 1.0.14.15
4+
Date: 2025-06-05
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

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{
10-
\item Fixed an issue where Rcpp::Language would duplicate its arguments
11-
(Kevin in \ghpr{1388}, fixing \ghit{1386})
1210
\item The \code{std::string_view} type is now covered by \code{wrap()}
1311
(Lev Kandel in \ghpr{1356} as discussed in \ghit{1357})
1412
\item A last remaining \code{DATAPTR} use has been converted to
@@ -23,6 +21,20 @@
2321
in \ghpr{1367} closing \ghit{1366})
2422
\item Remove \code{RCPP_USING_CXX11} as a \code{#define} as C++11 is
2523
now a given (Dirk in \ghpr{1369})
24+
\item Additional cleanup for \code{__cplusplus} checks (Iñaki in
25+
\ghpr{1371} fixing \ghit{1370})
26+
\item Unordered set construction no longer needs a macro for the
27+
pre-C++11 case (Iñaki in \ghpr{1372})
28+
\item Lambdas are supported in a Rcpp Sugar functions (Iñaki in \ghpr{1373})
29+
\item The Date(time)Vector classes now have default ctor (Dirk in
30+
\ghpr{1385} closing \ghpr{1384})
31+
\item Fixed an issue where Rcpp::Language would duplicate its arguments
32+
(Kevin in \ghpr{1388}, fixing \ghit{1386})
33+
}
34+
\item Changes in Rcpp Attributes:
35+
\itemize{
36+
\item The C++26 standard now has plugin support (Dirk in \ghpr{1381}
37+
closing \ghit{1380})
2638
}
2739
\item Changes in Rcpp Documentation:
2840
\itemize{
@@ -35,6 +47,7 @@
3547
\itemize{
3648
\item \code{Rcpp.package.skeleton()} creates \sQuote{URL} and
3749
\sQuote{BugReports} if given a GitHub username (Dirk in \ghpr{1358})
50+
\item R 4.4.* has been added to the CI matrix (Dirk in \ghpr{1376})
3851
\item Tests involving NA propagation are skipped under linux-arm64 as
3952
they are under macos-arm (Dirk in \ghpr{1379} closing \ghit{1378})
4053
}

inst/include/Rcpp/config.h

Lines changed: 2 additions & 2 deletions
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,14)
34-
#define RCPP_DEV_VERSION_STRING "1.0.14.14"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,14,15)
34+
#define RCPP_DEV_VERSION_STRING "1.0.14.15"
3535

3636
#endif

0 commit comments

Comments
 (0)