Skip to content

Commit c4b1674

Browse files
committed
prepare 1.0.8.2 release
1 parent 67cf65c commit c4b1674

File tree

5 files changed

+36
-5
lines changed

5 files changed

+36
-5
lines changed

ChangeLog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2022-03-09 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll minor version
4+
* inst/include/Rcpp/config.h: Idem
5+
6+
* inst/include/Rcpp/Language.h: To quieten compilations, replace
7+
std::(unary|binary)_function with std::function for C++11 or later
8+
* inst/include/Rcpp/StringTransformer.he: Idem
9+
110
2022-01-21 Dirk Eddelbuettel <[email protected]>
211

312
* DESCRIPTION (Version, Date): Roll minor version

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.8.1
4-
Date: 2022-01-21
3+
Version: 1.0.8.2
4+
Date: 2022-03-09
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]>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
[![BioConductor use](https://jangorecki.gitlab.io/rdeps/Rcpp/BioC_usage.svg?sanitize=true)](https://cran.r-project.org/package=Rcpp)
1515
[![StackOverflow](https://img.shields.io/badge/stackoverflow-rcpp-orange.svg)](https://stackoverflow.com/questions/tagged/rcpp)
1616
[![JSS](https://img.shields.io/badge/JSS-10.18637%2Fjss.v040.i08-brightgreen)](https://dx.doi.org/10.18637/jss.v040.i08)
17-
[![Springer useR!](https://img.shields.io/badge/Springer%20useR!-10.1007%2F978--1--4614--6868--4-brightgreen)](https://www.springer.com/gp/book/9781461468677)
17+
[![Springer useR!](https://img.shields.io/badge/Springer%20useR!-10.1007%2F978--1--4614--6868--4-brightgreen)](https://link.springer.com/gp/book/9781461468677)
1818
[![TAS](https://img.shields.io/badge/TAS-10.1080%2F00031305.2017.1375990-brightgreen)](https://dx.doi.org/10.1080/00031305.2017.1375990)
1919

2020
### Synopsis

inst/NEWS.Rd

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,28 @@
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.2 (2022-03-09)}{
7+
\itemize{
8+
\item Changes in Rcpp API:
9+
\itemize{
10+
\item Accomodate C++98 compilation by adjusting attributes.cpp (Dirk in
11+
\ghpr{1193} fixing \ghit{1192})
12+
\item Accomodate newest compilers by replacing deprecated
13+
\code{std::unary_function} and \code{std::binary_function} with
14+
\code{std::function} (Dirk fixing \ghit{1201} and CRAN request)
15+
}
16+
\item Changes in Rcpp Documentation:
17+
\itemize{
18+
\item Adjust one overflowing column (Bill Denney in \ghpr{1196} fixing
19+
\ghit{1195})
20+
}
21+
\item Changes in Rcpp Deployment:
22+
\itemize{
23+
\item Accomodate four digit version numbers in unit test (Dirk)
24+
}
25+
}
26+
}
27+
628
\section{Changes in Rcpp release version 1.0.8 (2022-01-11)}{
729
\itemize{
830
\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.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,1)
34-
#define RCPP_DEV_VERSION_STRING "1.0.8.1"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,8,2)
34+
#define RCPP_DEV_VERSION_STRING "1.0.8.2"
3535

3636
#endif

0 commit comments

Comments
 (0)