Skip to content

Commit fc3c0ed

Browse files
committed
use '::' in Rcpp::Rcpp.plugin.maker(), not ':::'
1 parent 6feb538 commit fc3c0ed

File tree

4 files changed

+19
-3
lines changed

4 files changed

+19
-3
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2017-11-18 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll minor version
4+
5+
* vignettes/Rcpp-FAQ.Rmd: Use Rcpp::Rcpp.plugin.maker(), not ':::'
6+
17
2017-11-17 Dirk Eddelbuettel <[email protected]>
28

39
* DESCRIPTION: Release 0.12.14

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: 0.12.14
4-
Date: 2017-11-17
3+
Version: 0.12.14.1
4+
Date: 2017-11-18
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
66
Nathan Russell, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>

inst/NEWS.Rd

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
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 0.12.15 (2018-0x-yy)}{
7+
\itemize{
8+
\item Changes in Rcpp Documentation:
9+
\itemize{
10+
\item The Rcpp FAQ now shows \code{Rcpp::Rcpp.plugin.maker()}m not the
11+
\code{:::} use.
12+
}
13+
}
14+
}
15+
616
\section{Changes in Rcpp version 0.12.14 (2017-11-17)}{
717
\itemize{
818
\item Changes in Rcpp API:

vignettes/Rcpp-FAQ.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -961,7 +961,7 @@ double v = gsl_rng_get (r);
961961
gsl_rng_free(r);
962962
return Rcpp::wrap(v);'
963963
964-
plug <- Rcpp:::Rcpp.plugin.maker(
964+
plug <- Rcpp::Rcpp.plugin.maker(
965965
include.before = "#include <gsl/gsl_rng.h>",
966966
libs = paste(
967967
"-L/usr/local/lib/R/site-library/Rcpp/lib -lRcpp",

0 commit comments

Comments
 (0)