Skip to content

Commit 4af2b9a

Browse files
committed
release 0.12.9
1 parent 28bd5b1 commit 4af2b9a

File tree

7 files changed

+25
-8
lines changed

7 files changed

+25
-8
lines changed

ChangeLog

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2017-01-14 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* DESCRIPTION: Release 0.12.9
4+
* inst/NEWS.Rd: Release 0.12.9
5+
* inst/bib/Rcpp.bib: Release 0.12.9
6+
* inst/include/Rcpp/config.h: Release 0.12.9
7+
8+
* README.md: Updated counts for dependents and tests
9+
10+
* debian/*: Changes for Debian release of 0.12.9
11+
112
2017-01-13 Dirk Eddelbuettel <edd@debian.org>
213

314
* inst/include/Rcpp/exceptions.h: Added more #nocov tags

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.8.4
4-
Date: 2017-01-06
3+
Version: 0.12.9
4+
Date: 2017-01-14
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
66
Nathan Russell, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <edd@debian.org>

README.md

+1-1
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 over 1292 unit tests in over 573 unit
59+
A number of examples are included as are 1359 unit tests in 591 unit
6060
test functions provide additional usage examples.
6161

6262
An earlier version of Rcpp, containing what we now call the 'classic Rcpp

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
rcpp (0.12.9-1) unstable; urgency=medium
2+
3+
* New upstream release
4+
5+
-- Dirk Eddelbuettel <edd@debian.org> Sat, 14 Jan 2017 09:18:21 -0500
6+
17
rcpp (0.12.8-1) unstable; urgency=medium
28

39
* New upstream release

inst/NEWS.Rd

+1-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.9 (2017-01-xx)}{
6+
\section{Changes in Rcpp version 0.12.9 (2017-01-14)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{

inst/bib/Rcpp.bib

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,8 @@ @Manual{CRAN:Rcpp
136136
author = {Dirk Eddelbuettel and Romain Fran\c{c}ois and JJ
137137
Allaire and Kevin Ushey and Qiang Kou and
138138
Nathan Russel and John Chambers and Douglas Bates},
139-
year = 2016,
140-
note = {R package version 0.12.8},
139+
year = 2017,
140+
note = {R package version 0.12.9},
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,8)
30+
#define RCPP_VERSION Rcpp_Version(0,12,9)
3131

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

3535
#endif
3636

0 commit comments

Comments
 (0)