Skip to content

Commit 62bb381

Browse files
committed
Roll micro version and date, update NEWS
1 parent a2b0ce5 commit 62bb381

File tree

4 files changed

+26
-5
lines changed

4 files changed

+26
-5
lines changed

ChangeLog

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1+
2023-08-31 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll micro version
4+
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
5+
16
2023-08-29 Iñaki Ucar <[email protected]>
27

3-
* R/Attributes.R: Ad-hoc fix for testthat's C entrypoint in RcppExports.cpp
8+
* R/Attributes.R: Ad-hoc fix for testthat's C entrypoint in
9+
RcppExports.cpp
410

511
2023-08-03 Dirk Eddelbuettel <[email protected]>
612

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.11.1
4-
Date: 2023-08-03
3+
Version: 1.0.11.2
4+
Date: 2023-08-31
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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
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.12 (2024-01-xx)}{
7+
\itemize{
8+
\item Changes in Rcpp API:
9+
\itemize{
10+
\item Missing header includes as spotted by some recent tools were
11+
added in two places (Michael Chirico in \ghpr{1272} closing \ghit{1271}).
12+
}
13+
\item Changes in Rcpp Attributes:
14+
\itemize{
15+
\item Generated interface code from base R that fails under LTO is now
16+
corrected (Iñaki in \ghpr{1274} fixing a StackOverflow issue).
17+
}
18+
}
19+
}
20+
621
\section{Changes in Rcpp release version 1.0.11 (2023-07-03)}{
722
\itemize{
823
\item Changes in Rcpp API:

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.11"
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,11,1)
34-
#define RCPP_DEV_VERSION_STRING "1.0.11.1"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,11,2)
34+
#define RCPP_DEV_VERSION_STRING "1.0.11.2"
3535

3636
#endif

0 commit comments

Comments
 (0)