Skip to content

Commit 68a27c7

Browse files
committed
release 0.12.12
1 parent 4fddd1c commit 68a27c7

File tree

7 files changed

+29
-10
lines changed

7 files changed

+29
-10
lines changed

ChangeLog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2017-07-13 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION: Release 0.12.12
4+
* inst/NEWS.Rd: Release 0.12.12
5+
* inst/bib/Rcpp.bib: Release 0.12.12
6+
* inst/include/Rcpp/config.h: Release 0.12.12
7+
8+
* README.md: Updated counts for dependents and tests
9+
10+
* debian/*: Changes for Debian release of 0.12.12
11+
112
2017-07-10 Jeff Pollock <[email protected]>
213

314
* inst/include/Rcpp/Module.h: Avoid unused variable warning

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.11.5
4-
Date: 2017-07-08
3+
Version: 0.12.12
4+
Date: 2017-07-13
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ 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 March 2017,
69-
there are 975 [CRAN](https://cran.r-project.org) packages using Rcpp, a further
70-
89 [BioConductor](http://www.bioconductor.org) packages in its current release
68+
Other usage examples are provided by packages using Rcpp. As of July 2017,
69+
there are 1092 [CRAN](https://cran.r-project.org) packages using Rcpp, a further
70+
91 [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.
7373

debian/changelog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
rcpp (0.12.11-2) unstable; urgency=medium
2+
3+
* New upstream release
4+
5+
* debian/control: Set Build-Depends: to current R version
6+
7+
-- Dirk Eddelbuettel <[email protected]> Thu, 13 Jul 2017 06:01:18 -0500
8+
19
rcpp (0.12.11-1) unstable; urgency=medium
210

311
* New upstream release

debian/control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ 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.4.0), cdbs, r-cran-codetools, r-cran-pkgkitten
5+
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.4.1), cdbs, r-cran-codetools, r-cran-pkgkitten
66
Standards-Version: 3.9.8
77
Homepage: http://dirk.eddelbuettel.com/code/rcpp.html
88

99
Package: r-cran-rcpp
1010
Architecture: any
11-
Depends: ${shlibs:Depends}, ${misc:Depends}, ${R:Depends}, littler, r-cran-pkgkitten
11+
Depends: ${shlibs:Depends}, ${misc:Depends}, ${R:Depends}, r-cran-littler, r-cran-pkgkitten
1212
Suggests: r-cran-inline
1313
Description: GNU R package for Seamless R and C++ Integration
1414
The Rcpp package provides R functions as well as C++ classes which

inst/bib/Rcpp.bib

Lines changed: 1 addition & 1 deletion
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.11},
140+
note = {R package version 0.12.12},
141141
url = CRAN # "package=Rcpp"
142142
}
143143

inst/include/Rcpp/config.h

Lines changed: 2 additions & 2 deletions
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,11)
30+
#define RCPP_VERSION Rcpp_Version(0,12,12)
3131

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

3535
#endif
3636

0 commit comments

Comments
 (0)