Skip to content

Commit b37b6f5

Browse files
committed
new minor version, small README.md update
1 parent 2f72ff8 commit b37b6f5

File tree

5 files changed

+31
-18
lines changed

5 files changed

+31
-18
lines changed

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2018-11-04 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Date, Version): Roll minor version
4+
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
5+
6+
* README.md: Updated stated package and test numbers
7+
18
2018-10-25 Kevin Ushey <[email protected]>
29

310
* inst/include/Rcpp/String.h: Use Rf_mkCharLenCE() as appropriate

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.19.3
4-
Date: 2018-10-12
3+
Version: 0.12.19.7
4+
Date: 2018-11-04
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]>

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rcpp [![Build Status](https://travis-ci.org/RcppCore/Rcpp.svg)](https://travis-ci.org/RcppCore/Rcpp) [![License](https://eddelbuettel.github.io/badges/GPL2+.svg)](http://www.gnu.org/licenses/gpl-2.0.html) [![CRAN](http://www.r-pkg.org/badges/version/Rcpp)](https://cran.r-project.org/package=Rcpp) [![Downloads](http://cranlogs.r-pkg.org/badges/Rcpp?color=brightgreen)](http://www.r-pkg.org/pkg/Rcpp) [![Coverage Status](https://codecov.io/gh/RcppCore/Rcpp/graph/badge.svg)](https://codecov.io/github/RcppCore/Rcpp?branch=master)
1+
## Rcpp [![Build Status](https://travis-ci.org/RcppCore/Rcpp.svg)](https://travis-ci.org/RcppCore/Rcpp) [![License](https://eddelbuettel.github.io/badges/GPL2+.svg)](http://www.gnu.org/licenses/gpl-2.0.html) [![CRAN](http://www.r-pkg.org/badges/version/Rcpp)](https://cran.r-project.org/package=Rcpp) [![Dependencies](https://tinyverse.netlify.com/badge/Rcpp)](https://cran.r-project.org/package=Rcpp) [![Downloads](http://cranlogs.r-pkg.org/badges/Rcpp?color=brightgreen)](http://www.r-pkg.org/pkg/Rcpp) [![Coverage Status](https://codecov.io/gh/RcppCore/Rcpp/graph/badge.svg)](https://codecov.io/github/RcppCore/Rcpp?branch=master)
22

33
### Seamless R and C++ Integration
44

@@ -73,7 +73,7 @@ documented and working examples. The
7373
[package RcppExamples](https://cran.r-project.org/package=RcppExamples) contains a few basic
7474
examples covering the core data types.
7575

76-
A number of examples are included as are 1429 unit tests in 618 unit
76+
A number of examples are included as are 1437 unit tests in 622 unit
7777
test functions provide additional usage examples.
7878

7979
An earlier version of Rcpp, containing what we now call the 'classic Rcpp
@@ -82,9 +82,9 @@ been factored out of Rcpp into the package RcppClassic, and it is still
8282
available for code relying on the older interface. New development should
8383
always use this Rcpp package instead.
8484

85-
Other usage examples are provided by packages using Rcpp. As of July 2018,
86-
there are 1408 [CRAN](https://cran.r-project.org) packages using Rcpp, a further
87-
91 [BioConductor](http://www.bioconductor.org) packages in its current release
85+
Other usage examples are provided by packages using Rcpp. As of November 2018,
86+
there are 1490 [CRAN](https://cran.r-project.org) packages using Rcpp, a further
87+
150 [BioConductor](http://www.bioconductor.org) packages in its current release
8888
as well as an unknown number of GitHub, Bitbucket, R-Forge, ... repositories
8989
using Rcpp. All these packages provide usage examples for Rcpp.
9090

inst/NEWS.Rd

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
\item The constructor for \code{NumericMatrix(not_init(n,k))} was
1313
corrected (Romain in \ghpr{904}, Dirk in \ghpr{905}, and also
1414
Romain in \ghpr{908} fixing \ghpr{907}).
15-
\item Rcpp::String no longer silently drops embedded NUL bytes
16-
in strings. Instead, the new Rcpp exception `embedded_nul_in_string`
17-
is thrown. (\ghit{916})
15+
\item \code{Rcpp::String} no longer silently drops embedded
16+
\code{NUL} bytes in strings but throws new Rcpp exception
17+
\code{embedded_nul_in_string}. (Kevin in \ghpr{917} fixing \ghit{916}).
1818
}
1919
\item Changes in Rcpp Deployment:
2020
\itemize{
@@ -24,13 +24,19 @@
2424
}
2525
\item Changes in Rcpp Attributes:
2626
\itemize{
27+
\item A new \code{[[Rcpp::init]]} attribute allows function
28+
registration for running on package initialization (JJ in
29+
\ghpr{903}).
2730
\item Sort the files scanned for attributes in the C locale for
28-
stable output across systems.
31+
stable output across systems (JJ in \ghpr{912}).
2932
}
3033
\item Changes in Rcpp Documentation:
3134
\itemize{
3235
\item The 'Rcpp Extending' vignette was corrected and refers to
33-
\code{EXPOSED} rather than \code{EXPORTED} (Ralf Stubner in \ghpr{910}).
36+
\code{EXPOSED} rather than \code{EXPORTED} (Ralf Stubner in
37+
\ghpr{910}).
38+
\item The 'Unit test' vignette is no longer included (Dirk in
39+
\ghpr{914}).
3440
}
3541
}
3642
}
@@ -132,12 +138,12 @@
132138
\itemize{
133139
\item Changes in Rcpp API:
134140
\itemize{
135-
\item The random number \code{Generator} class no longer inhreits from
141+
\item The random number \code{Generator} class no longer inherits from
136142
\code{RNGScope} (Kevin in \ghpr{837} fixing \ghit{836}).
137-
\item A new class, \code{SuspendRNGSynchronizationScope}, can be created
138-
and used to ensure that calls to Rcpp functions do not attempt to call
139-
\code{::GetRNGstate()} or \code{::PutRNGstate()} for the duration of
140-
some code block.
143+
\item A new class, \code{SuspendRNGSynchronizationScope}, can be created
144+
and used to ensure that calls to Rcpp functions do not attempt to call
145+
\code{::GetRNGstate()} or \code{::PutRNGstate()} for the duration of
146+
some code block.
141147
\item A spurious parenthesis was removed to please gcc8 (Dirk
142148
fixing \ghit{841})
143149
\item The optional \code{Timer} class header now undefines

inst/include/Rcpp/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
#define RCPP_VERSION Rcpp_Version(0,12,19)
3030

3131
// the current source snapshot
32-
#define RCPP_DEV_VERSION RcppDevVersion(0,12,19,3)
32+
#define RCPP_DEV_VERSION RcppDevVersion(0,12,19,7)
3333

3434
#endif

0 commit comments

Comments
 (0)