Skip to content

Commit 952a729

Browse files
committed
roll minor version
1 parent 420d1ee commit 952a729

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

ChangeLog

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

38
* vignettes/rmd/Rcpp-FAQ.Rmd: New entry on growing vectors

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.7.1
4-
Date: 2021-07-06
3+
Version: 1.0.7.2
4+
Date: 2021-07-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: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
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.8 (2022-01-xx)}{
7+
\itemize{
8+
\item Changes in Rcpp API:
9+
\itemize{
10+
\code{STRICT_R_HEADERS} will be enabled by default, see \ghit{1126}.
11+
}
12+
\item Changes in Rcpp Documentation:
13+
\itemize{
14+
\item The Rcpp FAQ has a new entry on how \emph{not} to grow a vector
15+
(Dirk in \ghpr{1167}).
16+
}
17+
}
18+
}
19+
620
\section{Changes in Rcpp release version 1.0.7 (2021-07-06)}{
721
\itemize{
822
\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.7"
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,7,1)
34-
#define RCPP_DEV_VERSION_STRING "1.0.7.1"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,7,2)
34+
#define RCPP_DEV_VERSION_STRING "1.0.7.2"
3535

3636
#endif

0 commit comments

Comments
 (0)