Skip to content

Commit 6ae91cc

Browse files
committed
release 0.12.0
1 parent ab0cd87 commit 6ae91cc

File tree

8 files changed

+30
-12
lines changed

8 files changed

+30
-12
lines changed

ChangeLog

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2015-07-24 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* DESCRIPTION: Release 0.12.0
4+
* inst/NEWS.Rd: Release 0.12.0
5+
* vignettes/Rcpp.bib: Release 0.12.0
6+
* inst/include/Rcpp/config.h: Release 0.12.0
7+
8+
* debian/*: Changes for Debian release of 0.12.0
9+
110
2015-07-23 Dirk Eddelbuettel <edd@debian.org>
211

312
* inst/include/Rcpp/Symbol.h: Use Rf_installChar(x) instead of
@@ -120,7 +129,7 @@
120129
* inst/NEWS.Rd: Release 0.11.6
121130
* inst/include/Rcpp/config.h: Release 0.11.6
122131

123-
* debian/*: Changes for Debian release of 0.11.5
132+
* debian/*: Changes for Debian release of 0.11.6
124133

125134
2015-04-27 JJ Allaire <jj@rstudio.org>
126135

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
3-
Version: 0.11.6.4.3
3+
Version: 0.12.0
44
Date: 2015-07-24
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey,
66
Qiang Kou, Douglas Bates and John Chambers

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,10 @@ been factored out of Rcpp into the package RcppClassic, and it is still
6969
available for code relying on the older interface. New development should
7070
always use this Rcpp package instead.
7171

72-
Other usage examples are provided by packages using Rcpp. As of June 2015, there
73-
are 400 CRAN packages using Rcpp, a further 57 BioConductor packages as well as
74-
an unknown number of GitHub, Bitbucket, R-Forge, ... repositories.
72+
Other usage examples are provided by packages using Rcpp. As of July 2015, there
73+
are about 423 CRAN packages using Rcpp, a further 57 BioConductor packages as
74+
well as an unknown number of GitHub, Bitbucket, R-Forge, ... repositories using
75+
Rcpp.
7576

7677
### Installation
7778

debian/changelog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
rcpp (0.12.0-1) unstable; urgency=low
2+
3+
* New upstream release
4+
5+
* debian/control: Set Build-Depends: to current R version
6+
7+
-- Dirk Eddelbuettel <edd@debian.org> Fri, 24 Jul 2015 08:42:26 -0500
8+
19
rcpp (0.11.6-1) unstable; urgency=low
210

311
* 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 <edd@debian.org>
5-
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.2.0), cdbs, r-cran-codetools, r-cran-pkgkitten
5+
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.2.1), cdbs, r-cran-codetools, r-cran-pkgkitten
66
Standards-Version: 3.9.6
77
Homepage: http://dirk.eddelbuettel.com/code/rcpp.html
88

inst/NEWS.Rd

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
\title{News for Package 'Rcpp'}
33
\newcommand{\cpkg}{\href{http://CRAN.R-project.org/package=#1}{\pkg{#1}}}
44

5-
\section{Changes in Rcpp version 0.11.7 (2015-xx-yy)}{
5+
\section{Changes in Rcpp version 0.12.0 (2015-07-24)}{
66
\itemize{
77
\item Changes in Rcpp API:
88
\itemize{

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

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

3535
#endif
3636

vignettes/Rcpp.bib

+3-3
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ @Article{JSS:Rcpp
134134
@Manual{CRAN:Rcpp,
135135
title = {{Rcpp}: Seamless {R} and {C++} Integration},
136136
author = {Dirk Eddelbuettel and Romain Fran\c{c}ois and JJ
137-
Allaire and John Chambers and Douglas Bates and
138-
Kevin Ushey},
137+
Allaire and Kevin Ushey and Qiang Kou and
138+
John Chambers and Douglas Bates},
139139
year = 2015,
140-
note = {R package version 0.11.6},
140+
note = {R package version 0.12.0},
141141
url = CRAN # "package=Rcpp"
142142
}
143143

0 commit comments

Comments
 (0)