Skip to content

Commit 7eac552

Browse files
committed
release 0.11.1
1 parent 4018bb8 commit 7eac552

File tree

7 files changed

+25
-6
lines changed

7 files changed

+25
-6
lines changed

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2014-03-13 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION: Release 0.11.0
4+
* inst/NEWS.Rd: Release 0.11.0
5+
* inst/include/Rcpp/config.h: Release 0.11.0
6+
* debian/*: Similarly updated for new release to Debian
7+
18
2014-03-09 Kevin Ushey <[email protected]>
29

310
* inst/include/Rcpp/vector/const_string_proxy.h: Workaround for issue

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.11.0.4
4-
Date: 2014-03-10
3+
Version: 0.11.1
4+
Date: 2014-03-12
55
Authors@R: c(person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "[email protected]" ),
66
person("Romain", "Francois", role = "aut", email = "[email protected]"),
77
person("JJ", "Allaire", role = "ctb", email = "[email protected]"),

debian/changelog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
rcpp (0.11.1-1) unstable; urgency=low
2+
3+
* New release
4+
5+
* debian/control: Set Build-Depends: to current R version
6+
7+
-- Dirk Eddelbuettel <[email protected]> Thu, 13 Mar 2014 20:20:11 -0500
8+
19
rcpp (0.11.0-1) unstable; urgency=low
210

311
* New 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 <[email protected]>
5-
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.0.2), cdbs, r-cran-codetools
5+
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.0.3), cdbs, r-cran-codetools
66
Standards-Version: 3.9.5
77
Homepage: http://dirk.eddelbuettel.com/code/rcpp.html
88

debian/r-cran-rcpp.lintian-overrides

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,7 @@ r-cran-rcpp: script-not-executable usr/lib/R/site-library/Rcpp/unitTests/runit.r
7373
r-cran-rcpp: script-not-executable usr/lib/R/site-library/Rcpp/unitTests/runit.String.R
7474
r-cran-rcpp: script-not-executable usr/lib/R/site-library/Rcpp/unitTests/runit.wstring.R
7575
r-cran-rcpp: script-not-executable usr/lib/R/site-library/Rcpp/unitTests/runit.Reference.R
76+
r-cran-rcpp: script-not-executable usr/lib/R/site-library/Rcpp/examples/ConvolveBenchmarks/overhead.sh
77+
r-cran-rcpp: script-not-executable usr/lib/R/site-library/Rcpp/unitTests/runit.na.R
78+
r-cran-rcpp: script-not-executable usr/lib/R/site-library/Rcpp/unitTests/runit.subset.R
79+
r-cran-rcpp: script-not-executable usr/lib/R/site-library/Rcpp/unitTests/runit.table.R

inst/NEWS.Rd

Lines changed: 2 additions & 2 deletions
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 [UNRELEASED] Rcpp version 0.11.1 (2014-04-01)}{
5+
\section{Changes in Rcpp version 0.11.1 (2014-03-13)}{
66
\itemize{
77
\item Changes in Rcpp API:
88
\itemize{
@@ -19,7 +19,7 @@
1919
values for numeric vectors.
2020
\item \code{DataFrame::nrows} now more accurately mimics R's
2121
internal behavior (checks the row.names attribute)
22-
\item Numerous changed to permit compilation on the Solaris OS
22+
\item Numerous changes to permit compilation on the Solaris OS
2323
\item Rcpp vectors gain a subsetting method -- it is now possible
2424
to subset an Rcpp vector using \code{CharacterVector}s (subset
2525
by name), \code{LogicalVector}s (logical subsetting), and

inst/include/Rcpp/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
#define Rcpp_Version(v,p,s) (((v) * 65536) + ((p) * 256) + (s))
2626

27-
#define RCPP_VERSION Rcpp_Version(0,11,0)
27+
#define RCPP_VERSION Rcpp_Version(0,11,1)
2828

2929
#endif
3030

0 commit comments

Comments
 (0)