Skip to content

Commit 2c1da8f

Browse files
committed
Roll micro version and date, edit NEWS and Changelog
1 parent d582dd4 commit 2c1da8f

4 files changed

Lines changed: 18 additions & 10 deletions

File tree

ChangeLog

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2026-05-01 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* DESCRIPTION (Version, Date): Roll micro version and date
4+
* inst/include/Rcpp/config.h: Idem
5+
6+
2026-04-29 Kevin Ushey <kevinushey@gmail.com>
7+
8+
* inst/include/Rcpp/exceptions.h: Use stack buffer for warning
9+
message to avoid string memory leakage in case of longjump
10+
* inst/tinytest/test_dataframe.R: New test
11+
112
2026-04-23 Dirk Eddelbuettel <edd@debian.org>
213

314
* vignettes/rmd/Rcpp.bib: Update one arXiv URL
@@ -320,7 +331,7 @@
320331
* man/Rcpp-deprecated.Rd: Idem
321332
* vignettes/rmd/Rcpp-modules.Rmd: Idem
322333

323-
2025-12-01 Kevin Ushey <kevinushey@gmail.com>
334+
2025-12-01 Kevin Ushey <kevinushey@gmail.com>
324335

325336
* R/Attributes.R: Update OpenMP plugin for macOS
326337

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.9
4-
Date: 2026-04-13
3+
Version: 1.1.1.10
4+
Date: 2026-05-01
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: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
\newcommand{\ghpr}{\href{https://github.com/RcppCore/Rcpp/pull/#1}{##1}}
44
\newcommand{\ghit}{\href{https://github.com/RcppCore/Rcpp/issues/#1}{##1}}
55

6-
\section{Changes in Rcpp release version 1.1.1.9 (2026-04-13)}{
6+
\section{Changes in Rcpp release version 1.1.1.10 (2026-05-01)}{
77
\itemize{
88
\item Interim release candidate for Rcpp 1.1.2 expected July 2026
99
\item Changes in Rcpp API:
@@ -33,10 +33,7 @@
3333
\item The \code{Nullable::as()} exporter now uses an explicit cast to
3434
the templated type (Dirk in \ghpr{1471} fixing \ghit{1470})
3535
\item A memory leak in the variadic \code{Rcpp::warning()} template
36-
has been fixed by copying the formatted message into a stack buffer
37-
before \code{Rf_warning()} is invoked, so the \code{std::string}
38-
destructor runs even when an R warning handler triggers a
39-
\code{longjmp} (Kevin fixing \ghit{1474})
36+
has been fixed (Kevin in \ghpr{1475} fixing \ghit{1474})
4037
}
4138
\item Changes in Rcpp Documentation:
4239
\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,9)
34-
#define RCPP_DEV_VERSION_STRING "1.1.1.9"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,1,1,10)
34+
#define RCPP_DEV_VERSION_STRING "1.1.1.10"
3535

3636
#endif

0 commit comments

Comments
 (0)