Skip to content

Commit 092d947

Browse files
committed
rolled version and date, updated NEWS
1 parent 84fe537 commit 092d947

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2017-05-18 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll Date and Version once more
4+
* inst/NEWS.Rd: Updated
5+
6+
* R/Attributes.R (.plugins[["openmp"]]): Fix typo in comment
7+
18
2017-05-16 JJ Allaire <[email protected]>
29

310
* R/Attributes.R: Automatically generate native routine registrations.

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.10.5
4-
Date: 2017-05-07
3+
Version: 0.12.10.6
4+
Date: 2017-05-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]>

R/Attributes.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ compileAttributes <- function(pkgdir = ".", verbose = getOption("verbose")) {
517517
list(env = list(PKG_CXXFLAGS ="-std=c++1z"))
518518
}
519519

520-
## built-in OpenMP++11 plugin
520+
## built-in OpenMP plugin
521521
.plugins[["openmp"]] <- function() {
522522
list(env = list(PKG_CXXFLAGS="-fopenmp",
523523
PKG_LIBS="-fopenmp"))

inst/NEWS.Rd

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
\item Rcpp::exceptions can now be constructed without a call stack (Jim
1111
Hester in \ghpr{663} addressing \ghit{664}).
1212
\item Somewhat spurious compiler messages under very verbose settings are
13-
now suppressed (Kirill Mueller in \ghpr{670}, \ghpr{671} and \ghpr{672}).
13+
now suppressed (Kirill Mueller in \ghpr{670}, \ghpr{671}, \ghpr{672},
14+
\ghpr{687}, \ghpr{688}, \ghpr{691}).
1415
\item Refreshed the included \code{tinyformat} template library
1516
(James Balamuta in \ghpr{674} addressing \ghit{673}).
1617
\item Added \code{printf}-like syntax support for exception classes and
@@ -20,7 +21,7 @@
2021
information. (James Balamuta in \ghpr{676} and \ghpr{677} addressing
2122
\ghit{184}).
2223
\item One more instance of \code{Rf_mkString} is protected from garbage
23-
collection (Dirk in \ghpr{684} addressing \ghit{683}).
24+
collection (Dirk in \ghpr{686} addressing \ghit{685}).
2425
\item Several compiler warnings for \code{-Wconversions} are no longer
2526
generated (Kirill Mueller in \ghpr{687} and \ghpr{688})
2627
\item Two exception specification that are no longer tolerated by
@@ -40,15 +41,15 @@
4041
}
4142
\item Changes in Rcpp Attributes:
4243
\itemize{
43-
\item Automatically generate native routine registrations.
44+
\item Automatically generate native routine registrations (JJ in \ghpr{694})
4445
\item The plugins for C++11, C++14, C++17 now set the values R 3.4.0 or
4546
later expects; a plugin for C++98 was added (Dirk in \ghpr{684} addressing
4647
\ghit{683}).
4748
}
4849
\item Changes in Rcpp support functions:
4950
\itemize{
50-
\item The \code{Rcpp.package.skeleton()} function now create a package
51-
registration file provided R 3.4.0 or later is used
51+
\item The \code{Rcpp.package.skeleton()} function now creates a package
52+
registration file provided R 3.4.0 or later is used (Dirk in \ghpr{692})
5253
}
5354
}
5455
}

0 commit comments

Comments
 (0)