Skip to content

Commit 8b652ae

Browse files
committed
release 0.12.11
1 parent 7445a22 commit 8b652ae

File tree

6 files changed

+19
-8
lines changed

6 files changed

+19
-8
lines changed

ChangeLog

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

314
* inst/NEWS.Rd: Removed one duplicate entry

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.10.6
4-
Date: 2017-05-18
3+
Version: 0.12.11
4+
Date: 2017-05-20
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 1373 unit tests in 595 unit
59+
A number of examples are included as are 1385 unit tests in 599 unit
6060
test functions provide additional usage examples.
6161

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

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.11 (2017-05-??)}{
6+
\section{Changes in Rcpp version 0.12.11 (2017-05-20)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{

inst/bib/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
Nathan Russel and John Chambers and Douglas Bates},
139139
year = 2017,
140-
note = {R package version 0.12.10},
140+
note = {R package version 0.12.11},
141141
url = CRAN # "package=Rcpp"
142142
}
143143

inst/include/Rcpp/config.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// config.h: Rcpp R/C++ interface class library -- Rcpp configuration
44
//
5-
// Copyright (C) 2010 - 2016 Dirk Eddelbuettel and Romain Francois
5+
// Copyright (C) 2010 - 2017 Dirk Eddelbuettel and Romain Francois
66
//
77
// This file is part of Rcpp.
88
//
@@ -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,10)
30+
#define RCPP_VERSION Rcpp_Version(0,12,11)
3131

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

3535
#endif
3636

0 commit comments

Comments
 (0)