Skip to content

Commit 6152943

Browse files
committed
release 0.12.4
1 parent 82d8a3a commit 6152943

File tree

8 files changed

+42
-9
lines changed

8 files changed

+42
-9
lines changed

ChangeLog

+25
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
2016-03-22 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION: Release 0.12.4
4+
* inst/NEWS.Rd: Release 0.12.4
5+
* vignettes/Rcpp.bib: Release 0.12.4
6+
* inst/include/Rcpp/config.h: Release 0.12.4
7+
8+
* debian/*: Changes for Debian release of 0.12.3
9+
10+
2016-03-19 Dirk Eddelbuettel <[email protected]>
11+
12+
* README.md: Use canonical CRAN URL to please R-devel CMD check
13+
14+
2016-03-12 Nathan Russell <[email protected]>
15+
16+
* inst/include/Rcpp/sugar/functions/cbind.h: Undefine MakeBindable macro
17+
after use
18+
19+
2016-03-12 Nathan Russell <[email protected]>
20+
21+
* inst/include/Rcpp/sugar/functions/cbind.h: New cbind() function
22+
* inst/include/Rcpp/sugar/functions/functions.h: Idem
23+
* inst/unitTests/cpp/sugar.cpp: Unit tests for cbind()
24+
* inst/unitTests/runit.sugar.R: Idem
25+
126
2016-03-09 Colin Gillespie <[email protected]>
227

328
* vignettes/Rcpp-sugar.Rnw: Correct typos and indentation

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.3.3
4-
Date: 2016-03-05
3+
Version: 0.12.4
4+
Date: 2016-03-22
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey,
66
Qiang Kou, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Rcpp [![Build Status](https://travis-ci.org/RcppCore/Rcpp.svg)](https://travis-ci.org/RcppCore/Rcpp) [![License](http://img.shields.io/badge/license-GPL%20%28%3E=%202%29-brightgreen.svg?style=flat)](http://www.gnu.org/licenses/gpl-2.0.html) [![CRAN](http://www.r-pkg.org/badges/version/Rcpp)](http://cran.rstudio.com/package=Rcpp) [![Downloads](http://cranlogs.r-pkg.org/badges/Rcpp?color=brightgreen)](http://www.r-pkg.org/pkg/Rcpp)
1+
## Rcpp [![Build Status](https://travis-ci.org/RcppCore/Rcpp.svg)](https://travis-ci.org/RcppCore/Rcpp) [![License](http://img.shields.io/badge/license-GPL%20%28%3E=%202%29-brightgreen.svg?style=flat)](http://www.gnu.org/licenses/gpl-2.0.html) [![CRAN](http://www.r-pkg.org/badges/version/Rcpp)](http://cran.r-project.org/package=Rcpp) [![Downloads](http://cranlogs.r-pkg.org/badges/Rcpp?color=brightgreen)](http://www.r-pkg.org/pkg/Rcpp)
22

33
### Seamless R and C++ Integration
44

debian/changelog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
rcpp (0.12.4-1) unstable; urgency=medium
2+
3+
* New upstream release
4+
5+
* debian/control: Set Build-Depends: to current R version
6+
7+
-- Dirk Eddelbuettel <[email protected]> Tue, 22 Mar 2016 06:24:28 -0500
8+
19
rcpp (0.12.3-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 <[email protected]>
5-
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.2.3), cdbs, r-cran-codetools, r-cran-pkgkitten
5+
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.2.4), 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
@@ -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.4 (2016-01-XX)}{
6+
\section{Changes in Rcpp version 0.12.4 (2016-03-22)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{

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 - 2015 Dirk Eddelbuettel and Romain Francois
5+
// Copyright (C) 2010 - 2016 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,3)
30+
#define RCPP_VERSION Rcpp_Version(0,12,4)
3131

3232
// the current source snapshot
33-
#define RCPP_DEV_VERSION RcppDevVersion(0,12,3,0)
33+
#define RCPP_DEV_VERSION RcppDevVersion(0,12,4,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 = 2016,
140-
note = {R package version 0.12.3},
140+
note = {R package version 0.12.4},
141141
url = CRAN # "package=Rcpp"
142142
}
143143

0 commit comments

Comments
 (0)