Skip to content

Commit bd0eb08

Browse files
committed
update changelog and news
1 parent bbd7365 commit bd0eb08

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

ChangeLog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2019-11-09 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* DESCRIPTION (Version, Date): Roll minor version
4+
5+
2019-11-09 TJ McKinley <t.mckinley@exeter.ac.uk>
6+
7+
* R/Attributes.R: Correct how cppFunction() deal with multiple
8+
depends arguments
9+
110
2019-11-08 Dirk Eddelbuettel <edd@debian.org>
211

312
* DESCRIPTION (Date, Version): Release 1.0.3

inst/NEWS.Rd

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,25 @@
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 version 1.0.4 (2020-03-xx)}{
7+
\itemize{
8+
\item Changes in Rcpp Attributes:
9+
\itemize{
10+
\item The \code{cppFunction} helper now deals correctly with mulitple
11+
\code{depends} arguments (TJ McKinley in \ghpr{1016} fixing
12+
\ghit{1017}).
13+
}
14+
}
15+
}
16+
617
\section{Changes in Rcpp version 1.0.3 (2019-11-08)}{
718
\itemize{
819
\item Changes in Rcpp API:
920
\itemize{
1021
\item Compilation can be sped up by skipping Modules headers via a
1122
toggle \code{RCPP_NO_MODULES} (Kevin in \ghpr{995} for \ghit{993}).
1223
\item Compilation can be sped up by toggling \code{RCPP_NO_RTTI} which
13-
implies \code{RCPP_NO_MODULES} (Dirk in \ghpr{998} fixing \ghit{998}).
24+
implies \code{RCPP_NO_MODULES} (Dirk in \ghpr{998} fixing \ghit{997}).
1425
\item \code{XPtr} tags are now preserved in \code{as<>} (Stephen Wade
1526
in \ghpr{1003} fixing \ghit{986}, plus Dirk in \ghpr{1012}).
1627
\item A few more temporary allocations are now protected from garbage

tests/doRUnit.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ if (requireNamespace("RUnit", quietly=TRUE) &&
6262

6363
tests <- runTestSuite(testSuite) # Run tests
6464

65-
printTextProtocol(tests) # Print results
66-
if (Sys.info()[["sysname"]] != "Windows")
67-
printTextProtocol(tests, file="/tmp/RcppTestLog.txt")
65+
printTextProtocol(tests) # Print results, optionally also to file
66+
if (Sys.getenv("RcppUnitTestsOutputFile") != "")
67+
printTextProtocol(tests, file=Sys.getenv("RcppUnitTestsOutputFile"))
6868

6969
## Return success or failure to R CMD CHECK
7070
if (getErrors(tests)$nFail > 0) stop("TEST FAILED!")

0 commit comments

Comments
 (0)