Skip to content

Commit 8bd3754

Browse files
committed
rolling micro version and date
1 parent 9e18f44 commit 8bd3754

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2022-09-25 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll minor version
4+
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
5+
16
2022-09-23 Kevin Ushey <[email protected]>
27

38
* R/Module.R: Force 'finalize' method to be materialized

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.9.2
4-
Date: 2022-09-20
3+
Version: 1.0.9.3
4+
Date: 2022-09-25
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
66
Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>

inst/NEWS.Rd

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@
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.0.9.2 (2022-09-20)}{
6+
\section{Changes in Rcpp release version 1.0.9.3 (2022-09-25)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{
10-
\item The 'finalize' method for Rcpp Modules is now eagerly materialized,
11-
fixing an issue where errors can occur when Module finalizers are run.
12-
(Kevin in \ghpr{1231})
1310
\item Unwind protection is enabled by default (Iñaki in \ghpr{1225}).
1411
It can be disabled by defining \code{RCPP_NO_UNWIND_PROTECT} before
1512
including \code{Rcpp.h}. \code{RCPP_USE_UNWIND_PROTECT} is not checked
1613
anymore and has no effect. The associated plugin \code{unwindProtect}
1714
is therefore deprecated and will be removed in a future release.
15+
\item The 'finalize' method for Rcpp Modules is now eagerly materialized,
16+
fixing an issue where errors can occur when Module finalizers are run
17+
(Kevin in \ghpr{1231} closing \ghit{1230}).
1818
}
1919
\item Changes in Rcpp Attributes:
2020
\itemize{
2121
\item The C++20, C++2b (experimental) and C++23 standards now have
22-
plugin support like the other C++ standards (Dirk in \ghpr{1228})
22+
plugin support like the other C++ standards (Dirk in \ghpr{1228}).
2323
}
2424
}
2525
}

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.9"
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,9,2)
34-
#define RCPP_DEV_VERSION_STRING "1.0.9.2"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,9,3)
34+
#define RCPP_DEV_VERSION_STRING "1.0.9.3"
3535

3636
#endif

0 commit comments

Comments
 (0)