Skip to content

Commit f2c35f9

Browse files
committed
release 0.12.15
1 parent 7a9122a commit f2c35f9

File tree

8 files changed

+42
-12
lines changed

8 files changed

+42
-12
lines changed

ChangeLog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2018-01-16 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION: Release 0.12.15
4+
* inst/NEWS.Rd: Release 0.12.15
5+
* inst/bib/Rcpp.bib: Release 0.12.15
6+
* vignettes/Rcpp.bib: Release 0.12.15
7+
* inst/include/Rcpp/config.h: Release 0.12.15
8+
9+
* debian/*: Changes for Debian release of 0.12.15
10+
111
2018-01-15 Dirk Eddelbuettel <[email protected]>
212

313
* inst/include/RcppCommon.h: Check for new #define RCPP_USE_UNWIND_PROTECT
@@ -30,6 +40,7 @@
3040
2018-01-09 Iñaki Ucar <[email protected]>
3141

3242
* inst/include/Rcpp/vector/proxy.h: Improve support for NVCC, the CUDA
43+
compiler, by making three more methods const
3344

3445
2018-01-06 Kendon Bell <[email protected]>
3546

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.14.8
4-
Date: 2018-01-14
3+
Version: 0.12.15
4+
Date: 2018-01-16
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]>

debian/changelog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
rcpp (0.12.15-1) unstable; urgency=medium
2+
3+
* New upstream release
4+
5+
* debian/control: Set Standards-Version: to current version
6+
7+
-- Dirk Eddelbuettel <[email protected]> Tue, 16 Jan 2018 06:04:40 -0600
8+
9+
rcpp (0.12.14-1) unstable; urgency=medium
10+
11+
* New upstream release
12+
13+
* debian/control: Set Build-Depends: to current R version
14+
* debian/control: Set Standards-Version: to current version
15+
16+
-- Dirk Eddelbuettel <[email protected]> Sun, 03 Dec 2017 18:50:23 -0600
17+
118
rcpp (0.12.13-1) unstable; urgency=medium
219

320
* New upstream release

debian/control

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

99
Package: r-cran-rcpp

inst/NEWS.Rd

Lines changed: 3 additions & 1 deletion
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.15 (2018-0x-yy)}{
6+
\section{Changes in Rcpp version 0.12.15 (2018-01-16)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{
@@ -45,6 +45,8 @@
4545
\ghpr{800}).
4646
\item Rearrange stack unwind test code, keep test disabled for now (Lionel
4747
in \ghpr{801}).
48+
\item Further condition away protect unwind behind #define (Dirk in
49+
\ghpr{802}).
4850
}
4951
\item Changes in Rcpp Attributes:
5052
\itemize{

inst/bib/Rcpp.bib

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ @Manual{CRAN:Rcpp
118118
author = {Dirk Eddelbuettel and Romain Fran\c{c}ois and JJ
119119
Allaire and Kevin Ushey and Qiang Kou and
120120
Nathan Russel and John Chambers and Douglas Bates},
121-
year = 2017,
122-
note = {R package version 0.12.14},
121+
year = 2018,
122+
note = {R package version 0.12.15},
123123
url = CRAN # "package=Rcpp"
124124
}
125125

inst/include/Rcpp/config.h

Lines changed: 3 additions & 3 deletions
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 - 2017 Dirk Eddelbuettel and Romain Francois
5+
// Copyright (C) 2010 - 2018 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,14)
30+
#define RCPP_VERSION Rcpp_Version(0,12,15)
3131

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

3535
#endif
3636

vignettes/Rcpp.bib

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ @Manual{CRAN:Rcpp
118118
author = {Dirk Eddelbuettel and Romain Fran\c{c}ois and JJ
119119
Allaire and Kevin Ushey and Qiang Kou and
120120
Nathan Russel and John Chambers and Douglas Bates},
121-
year = 2017,
122-
note = {R package version 0.12.14},
121+
year = 2018,
122+
note = {R package version 0.12.15},
123123
url = CRAN # "package=Rcpp"
124124
}
125125

0 commit comments

Comments
 (0)