Skip to content

Commit 5a71cf6

Browse files
committed
release 0.12.10
1 parent 6cf1301 commit 5a71cf6

File tree

9 files changed

+33
-11
lines changed

9 files changed

+33
-11
lines changed

ChangeLog

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2017-03-17 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION: Release 0.12.10
4+
* inst/NEWS.Rd: Release 0.12.10
5+
* inst/bib/Rcpp.bib: Release 0.12.10
6+
* inst/include/Rcpp/config.h: Release 0.12.10
7+
8+
* README.md: Updated counts for dependents and tests
9+
10+
* debian/*: Changes for Debian release of 0.12.10
11+
112
2017-03-15 Jeroen Ooms <[email protected]>
213

314
* inst/include/Rcpp/XPtr.h: added finalizeOnExit parameter

DESCRIPTION

+2-2
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.9.5
4-
Date: 2017-03-15
3+
Version: 0.12.10
4+
Date: 2017-03-17
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ see 'citation("Rcpp")' for details.
5656
The [Rcpp Gallery](http://gallery.rcpp.org) showcases over one hundred fully
5757
documented and working examples.
5858

59-
A number of examples are included as are 1359 unit tests in 591 unit
59+
A number of examples are included as are 1373 unit tests in 595 unit
6060
test functions provide additional usage examples.
6161

6262
An earlier version of Rcpp, containing what we now call the 'classic Rcpp
@@ -65,8 +65,8 @@ been factored out of Rcpp into the package RcppClassic, and it is still
6565
available for code relying on the older interface. New development should
6666
always use this Rcpp package instead.
6767

68-
Other usage examples are provided by packages using Rcpp. As of January 2017,
69-
there are 906 [CRAN](https://cran.r-project.org) packages using Rcpp, a further
68+
Other usage examples are provided by packages using Rcpp. As of March 2017,
69+
there are 975 [CRAN](https://cran.r-project.org) packages using Rcpp, a further
7070
89 [BioConductor](http://www.bioconductor.org) packages in its current release
7171
as well as an unknown number of GitHub, Bitbucket, R-Forge, ... repositories
7272
using Rcpp. All these packages provide usage examples for Rcpp.

cleanup

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ rm -f confdefs.h config.log config.status \
2929
vignettes/*.toc vignettes/*.tpt
3030

3131
rm -rf autom4te.cache inst/lib/ inst/doc/man/ inst/doc/html/ inst/doc/latex/ \
32-
inst/doc/auto inst/doc/Rcpp-*/auto/ src-* vignettes/auto
32+
inst/doc/auto inst/bib/auto inst/doc/Rcpp-*/auto/ src-* vignettes/auto
3333

3434
find . -name \*~ -exec rm {} \;
3535
find . -name \*.flc -exec rm {} \;

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
rcpp (0.12.10-1) unstable; urgency=medium
2+
3+
* New upstream release
4+
5+
-- Dirk Eddelbuettel <[email protected]> Fri, 17 Mar 2017 06:28:08 -0500
6+
17
rcpp (0.12.9-1) unstable; urgency=medium
28

39
* New upstream release

debian/control

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Source: rcpp
22
Section: gnu-r
33
Priority: optional
44
Maintainer: Dirk Eddelbuettel <[email protected]>
5-
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.3.2), cdbs, r-cran-codetools, r-cran-pkgkitten
5+
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.3.3), cdbs, r-cran-codetools, r-cran-pkgkitten
66
Standards-Version: 3.9.8
77
Homepage: http://dirk.eddelbuettel.com/code/rcpp.html
88

inst/NEWS.Rd

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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.10 (2017-03-xx)}{
6+
\section{Changes in Rcpp version 0.12.10 (2017-03-17)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{
@@ -26,6 +26,11 @@
2626
\item The C++17 standard is supported with a new plugin (used eg for
2727
\code{g++-6.2}).
2828
}
29+
\item Changes in Rcpp Documentation:
30+
\itemize{
31+
\item An overdue explanation of how C++11, C++14, and C++17 can be used
32+
was added to the Rcpp FAQ.
33+
}
2934
}
3035
}
3136

inst/bib/Rcpp.bib

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ @Manual{CRAN:Rcpp
137137
Allaire and Kevin Ushey and Qiang Kou and
138138
Nathan Russel and John Chambers and Douglas Bates},
139139
year = 2017,
140-
note = {R package version 0.12.9},
140+
note = {R package version 0.12.10},
141141
url = CRAN # "package=Rcpp"
142142
}
143143

inst/include/Rcpp/config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
#define RcppDevVersion(maj, min, rev, dev) (((maj)*1000000) + ((min)*10000) + ((rev)*100) + (dev))
2828

2929
// the currently released version
30-
#define RCPP_VERSION Rcpp_Version(0,12,9)
30+
#define RCPP_VERSION Rcpp_Version(0,12,10)
3131

3232
// the current source snapshot
33-
#define RCPP_DEV_VERSION RcppDevVersion(0,12,9,1)
33+
#define RCPP_DEV_VERSION RcppDevVersion(0,12,10,0)
3434

3535
#endif
3636

0 commit comments

Comments
 (0)