Skip to content

Commit 026147b

Browse files
committed
Roll micro version and date, update NEWS
1 parent 73a8987 commit 026147b

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

ChangeLog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
2026-05-05 Dirk Eddelbuettel <edd@debian.org>
22

3+
* DESCRIPTION (Version, Date): Roll micro version and date
4+
* inst/include/Rcpp/config.h: Idem
5+
36
* inst/include/Rcpp/Nullable.h (Nullable): Switch operatorT() from
47
opt-in to opt-out as six downstream packages have updated at CRAN
58

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.1.1.10
4-
Date: 2026-05-01
3+
Version: 1.1.1.11
4+
Date: 2026-05-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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
the templated type (Dirk in \ghpr{1471} fixing \ghit{1470})
3535
\item A memory leak in the variadic \code{Rcpp::warning()} template
3636
has been fixed (Kevin in \ghpr{1475} fixing \ghit{1474})
37+
\item The \code{Nullable::operatorT()} has been added as a 'opt-out'
38+
(Dirk in \ghpr{1477} with coordination in \ghit{1472})
3739
}
3840
\item Changes in Rcpp Documentation:
3941
\itemize{
@@ -44,6 +46,7 @@
4446
\itemize{
4547
\item Excute permissions are set consistently on scripts with shebangs
4648
(Mattias Ellert in \ghpr{1467})
49+
\item R 4.5.* has been added to the CI matrix (Dirk in \ghpr{1476})
4750
}
4851
\item Non-release Changes:
4952
\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.1.1"
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,1,1,10)
34-
#define RCPP_DEV_VERSION_STRING "1.1.1.10"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,1,1,11)
34+
#define RCPP_DEV_VERSION_STRING "1.1.1.11"
3535

3636
#endif

0 commit comments

Comments
 (0)