Skip to content

Commit d854744

Browse files
committed
Roll micro-release and date to 1.0.14.2, update NEWS
1 parent 6633770 commit d854744

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

ChangeLog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2025-02-05 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* DESCRIPTION (Version, Date): Roll micro version and date
4+
5+
* inst/include/Rcpp/config.h: Idem
6+
17
2025-01-31 Lev Kandel <lmakhlis@google.com>
28

39
* inst/include/Rcpp/internal/wrap.h: Add support for std::string_view

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.1
4-
Date: 2025-01-26
3+
Version: 1.0.14.2
4+
Date: 2025-02-05
55
Authors@R: c(person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "edd@debian.org",
66
comment = c(ORCID = "0000-0001-6419-907X")),
77
person("Romain", "Francois", role = "aut",

inst/NEWS.Rd

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55

66
\section{Changes in Rcpp release version 1.0.15 (2025-07-xx)}{
77
\itemize{
8+
\item Changes in Rcpp API:
9+
\itemize{
10+
\item The \code{std::string_view} type is now covered by \code{wrap()}
11+
(Lev Kandel in \ghpr{1356} as discussed in \ghit{1357})
12+
}
813
\item Changes in Rcpp Documentation:
914
\itemize{
1015
\item Several typos were correct in the NEWS file (Ben Bolker in

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,1)
34-
#define RCPP_DEV_VERSION_STRING "1.0.14.1"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,14,2)
34+
#define RCPP_DEV_VERSION_STRING "1.0.14.2"
3535

3636
#endif

0 commit comments

Comments
 (0)