Skip to content

Commit e09f1b3

Browse files
committed
release 0.12.6
1 parent b581486 commit e09f1b3

File tree

8 files changed

+61
-26
lines changed

8 files changed

+61
-26
lines changed

ChangeLog

+18-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
1+
2016-07-18 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION: Release 0.12.6
4+
* inst/NEWS.Rd: Release 0.12.6
5+
* vignettes/Rcpp.bib: Release 0.12.6, RProtoBuf updates
6+
* inst/include/Rcpp/config.h: Release 0.12.6
7+
8+
* README.md: Updated counts for dependents and tests
9+
10+
* debian/*: Changes for Debian release of 0.12.5
11+
112
2016-07-17 James J Balamuta <[email protected]>
213

314
* vignettes/Rcpp-quickref.Rnw: Added sections on Rcpp attributes and
4-
plugins. Facelifts on important notes, inline, environments, and
5-
calling R functions.
6-
15+
plugins. Facelifts on important notes, inline, environments, and calling
16+
R functions.
17+
18+
2016-07-16 Daniel C. Dillon <[email protected]>
19+
20+
* Added a const_interator typedef to VectorBase
21+
722
2016-07-15 James J Balamuta <[email protected]>
823

924
* vignettes/Rcpp-FAQ.Rnw: Added section on default function parameters

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.5.7
4-
Date: 2016-07-03
3+
Version: 0.12.6
4+
Date: 2016-07-18
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey,
66
Qiang Kou, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ see 'citation("Rcpp")' for details.
5353

5454
### Examples
5555

56-
The [Rcpp Gallery](http://gallery.rcpp.org) showcases over 90 fully documented
57-
and working examples.
56+
The [Rcpp Gallery](http://gallery.rcpp.org) showcases over one hundred fully
57+
documented and working examples.
5858

59-
A number of examples are included as are over 920 unit tests in over 470 unit
59+
A number of examples are included as are over 1100 unit tests in over 540 unit
6060
test functions provide additional usage examples.
6161

6262
An earlier version of Rcpp, containing what we now call the 'classic Rcpp
@@ -65,11 +65,11 @@ 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 2016, there
69-
are about 550 [CRAN](http://cran.r-project.org) packages using Rcpp, a further
70-
[BioConductor](http://www.bioconductor.org) packages as well as an unknown
71-
number of GitHub, Bitbucket, R-Forge, ... repositories using
72-
Rcpp. All these packages provide usage examples for Rcpp.
68+
Other usage examples are provided by packages using Rcpp. As of July 2016, there
69+
are about 700 [CRAN](http://cran.r-project.org) packages using Rcpp, a further
70+
72 [BioConductor](http://www.bioconductor.org) packages as well as an unknown
71+
number of GitHub, Bitbucket, R-Forge, ... repositories using Rcpp. All these
72+
packages provide usage examples for Rcpp.
7373

7474

7575
### Installation

debian/changelog

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
rcpp (0.12.6-1) unstable; urgency=medium
2+
3+
* New upstream release
4+
5+
* debian/control: Set Build-Depends: to current R version
6+
* debian/control: Set Standards-Version: to current version
7+
8+
-- Dirk Eddelbuettel <[email protected]> Mon, 18 Jul 2016 20:16:27 -0500
9+
110
rcpp (0.12.5-1) unstable; urgency=medium
211

312
* New upstream release

debian/control

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ 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.0), cdbs, r-cran-codetools, r-cran-pkgkitten
6-
Standards-Version: 3.9.7
5+
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.3.1), cdbs, r-cran-codetools, r-cran-pkgkitten
6+
Standards-Version: 3.9.8
77
Homepage: http://dirk.eddelbuettel.com/code/rcpp.html
88

99
Package: r-cran-rcpp

inst/NEWS.Rd

+5-6
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,15 @@
4141
}
4242
\item Changes in Rcpp Documentation:
4343
\itemize{
44-
\item The Rcpp Quick Reference vignette received a facelift with
45-
new sections on Rcpp attributes and plugins begin added.
46-
Furthermore, content was improved in the following
47-
sections: important notes, inline compiling, environments,
48-
and calling R functions.
49-
(James Balamuta in \ghpr{509} fixing \ghit{484}).
5044
\item A section on default parameters was added to the Rcpp FAQ vignette
5145
(James Balamuta in \ghpr{505} fixing \ghit{418}).
5246
\item The Rcpp-attributes vignette is now mentioned more prominently in
5347
question one of the Rcpp FAQ vignette.
48+
\item The Rcpp Quick Reference vignette received a facelift with new
49+
sections on Rcpp attributes and plugins begin added. (James Balamuta in
50+
\ghpr{509} fixing \ghit{484}).
51+
\item The bib file was updated with respect to the recent JSS publication
52+
for RProtoBuf.
5453
}
5554
}
5655
}

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,5)
30+
#define RCPP_VERSION Rcpp_Version(0,12,6)
3131

3232
// the current source snapshot
33-
#define RCPP_DEV_VERSION RcppDevVersion(0,12,5,0)
33+
#define RCPP_DEV_VERSION RcppDevVersion(0,12,6,0)
3434

3535
#endif
3636

vignettes/Rcpp.bib

+15-3
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ @Manual{CRAN:RInside
9999
@Manual{CRAN:RProtoBuf,
100100
title = {RProtoBuf: R Interface to the Protocol Buffers API},
101101
author = {Romain Fran\c{c}ois and Dirk Eddelbuettel and Murray Stokely and Jeroen Ooms},
102-
year = 2015,
103-
note = {R package version 0.4.3},
102+
year = 2016,
103+
note = {R package version 0.4.4},
104104
url = CRAN # "package=RProtoBuf"
105105
}
106106

@@ -137,7 +137,7 @@ @Manual{CRAN:Rcpp
137137
Allaire and Kevin Ushey and Qiang Kou and
138138
John Chambers and Douglas Bates},
139139
year = 2016,
140-
note = {R package version 0.12.5},
140+
note = {R package version 0.12.6},
141141
url = CRAN # "package=Rcpp"
142142
}
143143

@@ -215,6 +215,18 @@ @Article{JSS:RcppEigen
215215
url = {http://www.jstatsoft.org/v52/i05/},
216216
}
217217

218+
@Article{JSS:RProtoBuf,
219+
title = {{RProtoBuf}: Efficient Cross-Language Data Serialization in
220+
{R}},
221+
author = {Dirk Eddelbuettel and Murray Stokely and Jeroen Ooms},
222+
journal = {Journal of Statistical Software},
223+
year = {2016},
224+
volume = {71},
225+
number = {2},
226+
pages = {1--24},
227+
doi = {10.18637/jss.v071.i02},
228+
}
229+
218230
@Manual{CRAN:RcppExamples,
219231
title = {RcppExamples: Examples using {Rcpp} to interface {R}
220232
and {C++}},

0 commit comments

Comments
 (0)