Skip to content

Commit 6aca0ae

Browse files
committed
release 0.12.2
1 parent 7840929 commit 6aca0ae

File tree

6 files changed

+28
-9
lines changed

6 files changed

+28
-9
lines changed

ChangeLog

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2015-11-14 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION: Release 0.12.2
4+
* inst/NEWS.Rd: Release 0.12.2
5+
* vignettes/Rcpp.bib: Release 0.12.2
6+
* inst/include/Rcpp/config.h: Release 0.12.2
7+
8+
* debian/*: Changes for Debian release of 0.12.2
9+
10+
* vignettes/Rcpp.bib: Updated all CRAN reference to current versions
11+
112
2015-11-13 Dirk Eddelbuettel <[email protected]>
213

314
* inst/include/Rcpp/complex.h: Define a header guard for dplyr to

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.1.6
4-
Date: 2015-11-12
3+
Version: 0.12.2
4+
Date: 2015-11-14
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey,
66
Qiang Kou, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
rcpp (0.12.2-1) unstable; urgency=low
2+
3+
* New upstream release
4+
5+
-- Dirk Eddelbuettel <[email protected]> Sat, 14 Nov 2015 08:49:02 -0600
6+
17
rcpp (0.12.1-1) unstable; urgency=low
28

39
* New upstream release

inst/NEWS.Rd

+6-4
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@
1010
\item Correct return type in product of matrix dimensions (PR \ghpr{374}
1111
by Florian)
1212
\item Before creating a single String object from a \code{SEXP}, ensure
13-
that it is from a vector of length one (PR \ghpr{376} fixing \ghit{375}).
13+
that it is from a vector of length one (PR \ghpr{376} by Dirk, fixing
14+
\ghit{375}).
1415
\item No longer use \code{STRING_ELT} as a left-hand side, thanks to a
15-
heads-up by Luke Tierney (PR \ghpr{378} fixing \ghit{377}).
16+
heads-up by Luke Tierney (PR \ghpr{378} by Dirk, fixing \ghit{377}).
1617
\item Rcpp Module objects are now checked more carefully (PR \ghpr{381}
1718
by Tianqi, fixing \ghit{380})
1819
\item An overflow in Matrix column indexing was corrected (PR \ghpr{390}
@@ -23,8 +24,8 @@
2324
by Dan)
2425
\item Matrix classes now have a \code{transpose()} function (PR \ghpr{397}
2526
by Dirk fixing \ghit{383})
26-
\item \code{operator<<()} for complex types was added (PR \ghpr{398} by
27-
Qiang, fixing \ghit{187})
27+
\item \code{operator<<()} for complex types was added (PRs \ghpr{398} by
28+
Qiang and \ghpr{399} by Dirk, fixing \ghit{187})
2829
}
2930
\item Changes in Rcpp Attributes:
3031
\itemize{
@@ -41,6 +42,7 @@
4142
\itemize{
4243
\item The \code{NEWS} file now links to GitHub issue tickets and pull
4344
requests.
45+
\item The \code{Rcpp.bib} file with bibliographic references was updated.
4446
}
4547
}
4648
}

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

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

3535
#endif
3636

vignettes/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
John Chambers and Douglas Bates},
139139
year = 2015,
140-
note = {R package version 0.12.1},
140+
note = {R package version 0.12.2},
141141
url = CRAN # "package=Rcpp"
142142
}
143143

0 commit comments

Comments
 (0)