Skip to content

Commit 7932566

Browse files
authored
Merge pull request #1270 from RcppCore/release/1.0.11
Release 1.0.11
2 parents 3ff78d9 + d5964f8 commit 7932566

File tree

4 files changed

+34
-10
lines changed

4 files changed

+34
-10
lines changed

ChangeLog

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2023-07-03 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Date, Version): Release 1.0.11
4+
5+
* inst/include/Rcpp/config.h: Idem
6+
* inst/NEWS.Rd: Idem
7+
* vignettes/rmd/Rcpp.bib: Idem
8+
* inst/bib/Rcpp.bib: Idem
9+
* vignettes/pdf/*: Rebuilt
10+
111
2023-07-02 Dirk Eddelbuettel <[email protected]>
212

313
* README.md: Update usage numbers in Examples section
@@ -95,6 +105,13 @@
95105

96106
* R/RcppLdpath.R: CxxFlags() now quotes only non-standard paths on linux
97107

108+
2023-01-22 Dirk Eddelbuettel <[email protected]>
109+
110+
* DESCRIPTION (Date, Version): Release 1.0.10
111+
112+
* inst/include/Rcpp/config.h: Idem
113+
* inst/NEWS.Rd: Idem
114+
98115
2023-01-08 Dirk Eddelbuettel <[email protected]>
99116

100117
* inst/include/Rcpp/String.h: Address clang++-14 conversion warning

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.10.5
4-
Date: 2023-06-12
3+
Version: 1.0.11
4+
Date: 2023-07-03
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

+11-4
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 rc version 1.0.10.3 for 1.0.11 (2023-07-xx)}{
6+
\section{Changes in Rcpp rc version 1.0.11 (2023-07-03)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{
@@ -12,19 +12,26 @@
1212
\item Two unit tests no longer accidentally bark on stdout (Dirk and
1313
Iñaki in \ghpr{1245}).
1414
\item Compilation under C++ using \pkg{clang++} and its standard
15-
library is enabled (Dirk in \ghpr{1248}) closing \ghit{1244}).
15+
library is enabled (Dirk in \ghpr{1248} closing \ghit{1244}).
1616
\item Use backticks in a generated \code{.Call()} statement in
1717
`RcppExports.R` (Dirk \ghpr{1256} closing \ghit{1255}).
18+
\item Switch to \code{system2()} to capture standard error messages in
19+
error cases (Iñaki in \ghpr{1259} and \ghpr{1261} fixing \ghit{1257}).
1820
}
1921
\item Changes in Rcpp Documentation:
2022
\itemize{
2123
\item The CITATION file format has been updated (Dirk in \ghpr{1250}
22-
fixing \ghit{1249}.
24+
fixing \ghit{1249}).
2325
}
2426
\item Changes in Rcpp Deployment:
2527
\itemize{
2628
\item A test for \code{qnorm} now uses the more accurate value from R
27-
4.3.0 (Dirk in \ghpr{1252} fixing \ghit{1251}).
29+
4.3.0 (Dirk in \ghpr{1252} and \ghpr{1260} fixing \ghit{1251}).
30+
\item Skip tests with path issues on Windows (Iñaki in \ghpr{1258}).
31+
\item Container deployment in continuous integrations was
32+
improved. (Iñaki and Dirk in \ghpr{1264}, Dirk in \ghpr{1269}).
33+
\item Several files receives minor edits to please \code{R CMD check}
34+
from r-devel (Dirk in \ghpr{1267}).
2835
}
2936
}
3037
}

inst/include/Rcpp/config.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
#define RcppDevVersion(maj, min, rev, dev) (((maj)*1000000) + ((min)*10000) + ((rev)*100) + (dev))
2727

2828
// the currently released version
29-
#define RCPP_VERSION Rcpp_Version(1,0,10)
30-
#define RCPP_VERSION_STRING "1.0.10"
29+
#define RCPP_VERSION Rcpp_Version(1,0,11)
30+
#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,10,5)
34-
#define RCPP_DEV_VERSION_STRING "1.0.10.5"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,11,0)
34+
#define RCPP_DEV_VERSION_STRING "1.0.11.0"
3535

3636
#endif

0 commit comments

Comments
 (0)