Skip to content

Commit 4b86c1b

Browse files
committed
add a few NEWS.Rd entries from a few recent PRs
1 parent cd8d2dd commit 4b86c1b

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2019-12-17 Dirk Eddelbuettel <[email protected]>
2+
3+
* R/Attributes.R (sourceCpp): Very minor cosmetic changes
4+
15
2019-12-15 Dirk Eddelbuettel <[email protected]>
26

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

R/Attributes.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ sourceCpp <- function(file = "",
6363
if (grepl(' ', basename(file), fixed=TRUE)) {
6464
stop("The filename '", basename(file), "' contains spaces. This ",
6565
"is not permitted.")
66-
} # #nocov end
66+
}
6767
} else {
6868
if (verbose && windowsDebugDLL) {
6969
message("The 'windowsDebugDLL' toggle is ignored on non-Windows platforms.")
70-
windowsDebugDLL <- FALSE # no we do not need to for OS below
71-
}
70+
windowsDebugDLL <- FALSE # now we do not need to deal with OS choice below
71+
} # #nocov end
7272
}
7373

7474
# get the context (does code generation as necessary)

inst/NEWS.Rd

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
\itemize{
1010
\item Safer \code{Rcpp_list*}, \code{Rcpp_lang*} and
1111
\code{Function.operator()} (Romain in \ghpr{1014}, \ghit{1015}).
12+
\item A number of \code{#nocov} markers were added (Dirk in
13+
\ghprP1036}).
1214
}
1315
\item Changes in Rcpp Attributes:
1416
\itemize{
@@ -17,18 +19,27 @@
1719
\ghit{1017}).
1820
\item Invisible return object are now supported via new option (Kun Ren
1921
in \ghpr{1025} fixing \ghit{1024}).
22+
\item Unavailable packages referred to in \code{LinkingTo} are now
23+
reported (Dirk in \ghpr{1027} fixing \ghit{1026}).
24+
\item The \code{sourceCpp} function can now create a debug DLL on
25+
Windows (Dirk in \ghpr{1037} fixing \ghit{ghit}).
2026
}
2127
\item Changes in Rcpp Documentation:
2228
\itemize{
2329
\item The \code{.github/} directory now has more explicit guidance on
2430
contributinh, issues, and pull requests (Dirk).
2531
\item The Rcpp Attributes vignette describe the new invisible return
2632
objection option (Kun Ren in \ghpr{1025}).
33+
\item Vignettes are now included as pre-made pdf files (Dirk in \ghpr{1029})
34+
\item The Rcpp FAQ has new entry on the recommended
35+
\code{importFrom} directive (Dirk in \ghpr{1031} fixing \ghit{1030}).
2736
}
2837
\item Changes in Rcpp Deployment:
2938
\itemize{
3039
\item Added unit test to check if C++ version remains remains aligned
3140
with the package number (Dirk in \ghpr{1022} fixing \ghit{1021}).
41+
\item The unit test system was switched to tinytest (Dirk in
42+
\ghpr{1028}, \ghpr{1032}, \ghpr{1033}).
3243
}
3344
}
3445
}

0 commit comments

Comments
 (0)