Skip to content

Commit 87a139c

Browse files
committed
update changelog and news, roll minor version
1 parent 1138767 commit 87a139c

File tree

3 files changed

+26
-8
lines changed

3 files changed

+26
-8
lines changed

ChangeLog

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2018-04-25 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll minor version
4+
5+
2018-04-25 Romain Francois <[email protected]>
6+
7+
* inst/include/Rcpp/Benchmark/Timer.h: If defined, undefine FALSE
8+
9+
2018-04-17 Ralf Stubner <[email protected]>
10+
11+
* vignettes/Rcpp-attributes.Rmd: Replace back-quote with straight quote
12+
* vignettes/Rcpp-modules.Rmd: Idem
13+
114
2018-04-02 Dirk Eddelbuettel <[email protected]>
215

316
* .editorconfig: Added support for editorconfig.org

DESCRIPTION

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
3-
Version: 0.12.16.1
4-
Date: 2018-03-21
3+
Version: 0.12.16.2
4+
Date: 2018-04-25
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]>
88
Description: The 'Rcpp' package provides R functions as well as C++ classes which
99
offer a seamless integration of R and C++. Many R data types and objects can be
1010
mapped back and forth to C++ equivalents which facilitates both writing of new
11-
code as well as easier integration of third-party libraries. Documentation
12-
about 'Rcpp' is provided by several vignettes included in this package, via the
13-
'Rcpp Gallery' site at <http://gallery.rcpp.org>, the paper by Eddelbuettel and
11+
code as well as easier integration of third-party libraries. Documentation
12+
about 'Rcpp' is provided by several vignettes included in this package, via the
13+
'Rcpp Gallery' site at <http://gallery.rcpp.org>, the paper by Eddelbuettel and
1414
Francois (2011, <doi:10.18637/jss.v040.i08>), the book by Eddelbuettel (2013,
1515
<doi:10.1007/978-1-4614-6868-4>) and the paper by Eddelbuettel and Balamuta (2017,
1616
<doi:10.7287/peerj.preprints.3188v1>); see 'citation("Rcpp")' for details.

inst/NEWS.Rd

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,16 @@
99
\itemize{
1010
\item The random number \code{Generator} class no longer inhreits from
1111
\code{RNGScope} (Kevin in \ghpr{837} fixing \ghit{836}).
12+
\item The optional \code{Timer} class header now undefines
13+
\code{FALSE} which was seen to have side-effects on some platforms
14+
(Romain in \ghpr{847} fixing \ghpr{846}).
1215
}
1316
\item Changes in Rcpp Documentation:
1417
\itemize{
1518
\item Two internal links to the introduction published in JSS have been
1619
updated to the changed filename given the newer TAS introduction.
20+
\item Some remaining backticks were replaced with straight quotes
21+
(Ralf Stubner in \ghpr{845}).
1722
}
1823
}
1924
}
@@ -63,7 +68,7 @@
6368
catching, returns, restarts, debugger exit) are appropriately
6469
detected and handled, e.g. the C++ stack unwinds correctly
6570
(Lionel in \ghpr{789}). [ Committed but subsequently disabled in release
66-
0.12.15 ]
71+
0.12.15 ]
6772
\item The new function \code{Rcpp_fast_eval()} can be used for
6873
performance-sensitive evaluation of R code. Unlike
6974
\code{Rcpp_eval()}, it does not try to catch errors with
@@ -74,7 +79,7 @@
7479
\code{Rcpp_eval()}. On old R versions \code{Rcpp_fast_eval()}
7580
falls back to \code{Rcpp_eval()} so it is safe to use against any
7681
versions of R (Lionel in \ghpr{789}). [ Committed but subsequently
77-
disabled in release 0.12.15 ]
82+
disabled in release 0.12.15 ]
7883
\item Overly-clever checks for \code{NA} have been removed (Kevin in
7984
\ghpr{790}).
8085
\item The included tinyformat has been updated to the current version,
@@ -89,7 +94,7 @@
8994
\item Rearrange stack unwind test code, keep test disabled for now (Lionel
9095
in \ghpr{801}).
9196
\item Further condition away protect unwind behind #define (Dirk in
92-
\ghpr{802}).
97+
\ghpr{802}).
9398
}
9499
\item Changes in Rcpp Attributes:
95100
\itemize{

0 commit comments

Comments
 (0)