Skip to content

Commit a92d69e

Browse files
committed
Roll micro version and date, update NEWS.Rd
1 parent 03db1f7 commit a92d69e

File tree

4 files changed

+18
-7
lines changed

4 files changed

+18
-7
lines changed

ChangeLog

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
1-
2025-03-07 Dirk Eddelbuettel <[email protected]>
1+
2025-03-10 Dirk Eddelbuettel <[email protected]>
22

33
* DESCRIPTION (Version, Date): Roll micro version and date
4+
* inst/include/Rcpp/config.h: Idem
5+
6+
2025-03-08 Dirk Eddelbuettel <[email protected]>
47

8+
* inst/include/Rcpp/Function.h: Use R_ClosureEnv instead of
9+
deprecated CLOENV if under R >= 4.5.0
10+
11+
2025-03-07 Dirk Eddelbuettel <[email protected]>
12+
13+
* DESCRIPTION (Version, Date): Roll micro version and date
514
* inst/include/Rcpp/config.h: Idem
615

716
* src/barrier.cpp (dataptr): Replace remaining DATAPTR with
@@ -21,7 +30,6 @@
2130
2025-02-05 Dirk Eddelbuettel <[email protected]>
2231

2332
* DESCRIPTION (Version, Date): Roll micro version and date
24-
2533
* inst/include/Rcpp/config.h: Idem
2634

2735
2025-01-31 Lev Kandel <[email protected]>
@@ -36,7 +44,6 @@
3644
2025-01-26 Dirk Eddelbuettel <[email protected]>
3745

3846
* DESCRIPTION (Version, Date): Roll micro version and date
39-
4047
* inst/include/Rcpp/config.h: Idem
4148

4249
2025-01-25 Dirk Eddelbuettel <[email protected]>

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.4
4-
Date: 2025-03-07
3+
Version: 1.0.14.5
4+
Date: 2025-03-10
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
\itemize{
1010
\item The \code{std::string_view} type is now covered by \code{wrap()}
1111
(Lev Kandel in \ghpr{1356} as discussed in \ghit{1357})
12+
\item A last remaining \code{DATAPTR} use has been converted to
13+
\code{DATAPTR_RO} (Dirk in \ghpr{1359})
14+
\item Under R 4.5.0 or later, \code{R_ClosureEnv} is used instead of
15+
\code{CLOENV} (Dirk in \ghpr{1360})
1216
}
1317
\item Changes in Rcpp Documentation:
1418
\itemize{

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,4)
34-
#define RCPP_DEV_VERSION_STRING "1.0.14.4"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,14,5)
34+
#define RCPP_DEV_VERSION_STRING "1.0.14.5"
3535

3636
#endif

0 commit comments

Comments
 (0)