Skip to content

Commit 54d50a9

Browse files
committed
rolling minor version
1 parent 673b6da commit 54d50a9

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2022-03-14 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll minor version
4+
* inst/include/Rcpp/config.h: Idem
5+
16
2022-03-13 Iñaki Ucar <[email protected]>
27

38
* src/barrier.cpp: Untag tokens upon removal from the precious list,

DESCRIPTION

+2-2
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.8.3
4-
Date: 2022-03-13
3+
Version: 1.0.8.4
4+
Date: 2022-03-14
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

+3-1
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 hotfix release version 1.0.8.3 (2022-03-13)}{
6+
\section{Changes in Rcpp hotfix release version 1.0.8.4 (2022-03-14)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{
@@ -13,6 +13,8 @@
1313
\code{std::unary_function} and \code{std::binary_function} with
1414
\code{std::function} (Dirk in \ghpr{1202} fixing \ghit{1201} and
1515
CRAN request)
16+
\code Upon removal from precious list, the tag is set to null
17+
(Iñaki in \ghpr{1205} fixing \ghit{1203})
1618
}
1719
\item Changes in Rcpp Documentation:
1820
\itemize{

inst/include/Rcpp/config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#define RCPP_VERSION_STRING "1.0.8"
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,8,3)
34-
#define RCPP_DEV_VERSION_STRING "1.0.8.3"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,8,4)
34+
#define RCPP_DEV_VERSION_STRING "1.0.8.4"
3535

3636
#endif

0 commit comments

Comments
 (0)