File tree Expand file tree Collapse file tree 3 files changed +24
-4
lines changed
Expand file tree Collapse file tree 3 files changed +24
-4
lines changed Original file line number Diff line number Diff line change 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+
1102019-11-08 Dirk Eddelbuettel <edd@debian.org>
211
312 * DESCRIPTION (Date, Version): Release 1.0.3
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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!" )
You can’t perform that action at this time.
0 commit comments