Skip to content

Commit 998bff8

Browse files
committed
release 0.11.4
1 parent d7fbcf6 commit 998bff8

File tree

8 files changed

+89
-5
lines changed

8 files changed

+89
-5
lines changed

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ doxyfile
1313
.travis.yml
1414
.dir-locals.el
1515
vignettes/getCurrentVersionsOfCitedPackages.R
16+
NotesForCRAN.md
17+
local

ChangeLog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2015-01-20 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* DESCRIPTION: Release 0.11.4
4+
* inst/NEWS.Rd: Release 0.11.4
5+
* inst/include/Rcpp/config.h: Release 0.11.4
6+
7+
* debian/*: Changes for Debian release of 0.11.3
8+
19
2015-01-19 Kevin Ushey <kevinushey@gmail.com>
210

311
* inst/include/Rcpp/r/headers.h: move R headers inclusion to own file;

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
3-
Version: 0.11.3.7
3+
Version: 0.11.4
44
Date: 2015-01-20
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey,
66
Douglas Bates, and John Chambers

debian/changelog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
rcpp (0.11.3-2) unstable; urgency=low
2+
3+
* New upstream release
4+
5+
* debian/control: Set Build-Depends: to current R version
6+
7+
-- Dirk Eddelbuettel <edd@debian.org> Tue, 20 Jan 2015 11:33:20 -0600
8+
19
rcpp (0.11.3-1) unstable; urgency=low
210

311
* New upstream release

debian/control

Lines changed: 1 addition & 1 deletion
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 <edd@debian.org>
5-
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.1.1), cdbs, r-cran-codetools, r-cran-pkgkitten
5+
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.1.2), 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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
\title{News for Package 'Rcpp'}
33
\newcommand{\cpkg}{\href{http://CRAN.R-project.org/package=#1}{\pkg{#1}}}
44

5-
\section{Changes in Rcpp version 0.11.4 [UNRELEASED]}{
5+
\section{Changes in Rcpp version 0.11.4 (2015-01-20)}{
66
\itemize{
77
\item Changes in Rcpp API:
88
\itemize{

inst/include/Rcpp/config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
#define RcppDevVersion(maj, min, rev, dev) (((maj)*1e6) + ((min)*1e4) + ((rev)*1e2) + (dev))
2828

2929
// the currently released version
30-
#define RCPP_VERSION Rcpp_Version(0,11,3)
30+
#define RCPP_VERSION Rcpp_Version(0,11,4)
3131

3232
// the current source snapshot
33-
#define RCPP_DEV_VERSION RcppDevVersion(0,11,3,6)
33+
#define RCPP_DEV_VERSION RcppDevVersion(0,11,4,0)
3434

3535
#endif
3636

local/NotesForCRAN-0.11.4.md

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
2+
## Rcpp 0.11.4 Upload Notes
3+
4+
### R CMD check output: Known Isssues Common With Previous Releases
5+
6+
#### Package Size
7+
8+
```
9+
* checking installed package size ... NOTE
10+
installed size is 12.6Mb
11+
sub-directories of 1Mb or more:
12+
doc 1.6Mb
13+
include 6.1Mb
14+
libs 3.4Mb
15+
```
16+
17+
#### Foreign Function Calls
18+
19+
```
20+
* checking foreign function calls ... NOTE
21+
Registration problem:
22+
symbol ‘symbol’ in the local frame:
23+
.Call(symbol)
24+
See chapter ‘System and foreign language interfaces’ in the ‘Writing R Extensions’ manual.
25+
```
26+
27+
#### Tested Successfully
28+
29+
- Linux r-devel (Ubuntu 14.10)
30+
- Linux r-release (Ubuntu 14.10)
31+
- Linux r-release (Ubuntu 12.04, via Travis)
32+
- Windows r-release (Winbuilder)
33+
- Windows r-devel (Winbuilder)
34+
35+
#### Tests Skipped For Lack Of Platform
36+
37+
- OS X
38+
- Solaris
39+
40+
### Reverse Dependencies
41+
42+
Full check against all first-level reverse depends.
43+
44+
Test details as usual at https://github.com/RcppCore/rcpp-logs
45+
46+
Test summary:
47+
48+
```
49+
edd@max:~/git/rcpp-logs/results$ ./Rcpp-Summary-20150119.R
50+
./Rcpp-Summary-20150119.R
51+
Good 313
52+
AsIs 311
53+
w/Patches 2
54+
Bad 9
55+
NotRcpp 7
56+
Skipped 2
57+
Total 322
58+
Bad Percent 0.00621118
59+
edd@max:~/git/rcpp-logs/results$
60+
```
61+
62+
63+
64+
65+
66+

0 commit comments

Comments
 (0)