Skip to content

Commit 7901827

Browse files
committed
release 0.11.6
1 parent f04bc77 commit 7901827

File tree

6 files changed

+38
-15
lines changed

6 files changed

+38
-15
lines changed

ChangeLog

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,27 @@
1+
2015-05-01 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION: Release 0.11.6
4+
* inst/NEWS.Rd: Release 0.11.6
5+
* inst/include/Rcpp/config.h: Release 0.11.6
6+
7+
* debian/*: Changes for Debian release of 0.11.5
8+
9+
2015-04-27 JJ Allaire <[email protected]>
10+
11+
* src/Module.cpp: Revert parts of PR291 pertaining to Modules and {BEGIN/END}_RCPP
12+
* inst/include/Rcpp/api/meat/module/Module.h: Ditto
13+
* inst/include/Rcpp/InternalFunctionWithStdFunction.h: Ditto
14+
* inst/include/Rcpp/module/Module_generated_CppFunction.h: Ditto
15+
* inst/include/Rcpp/module/class.h: Ditto
16+
117
2014-04-25 Romain Francois <[email protected]>
218

319
* inst/include/Rcpp/vector/Vector.h: update the parameterization of Vector cache
420
* inst/include/Rcpp/vector/traits.h: ...
521
* inst/include/Rcpp/vector/00_forward_proxy.h: ...
622
* inst/unitTests/runit.Vector.R: test for above changes
723
* inst/unitTests/cpp/Vector.cpp: ...
8-
24+
925
2015-04-22 Kevin Ushey <[email protected]>
1026

1127
* inst/include/Rcpp/utils/tinyformat.h: don't use C++11 features

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.5.4
4-
Date: 2015-04-25
3+
Version: 0.11.6
4+
Date: 2015-05-01
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey,
66
Douglas Bates, and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
rcpp (0.11.6-1) unstable; urgency=low
2+
3+
* New upstream release
4+
5+
-- Dirk Eddelbuettel <[email protected]> Fri, 01 May 2015 06:20:46 -0500
6+
17
rcpp (0.11.5-1) unstable; urgency=low
28

39
* 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 <[email protected]>
5-
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.1.2), cdbs, r-cran-codetools, r-cran-pkgkitten
5+
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.2.0), 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: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,23 @@
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.6 (Unreleased)}{
5+
\section{Changes in Rcpp version 0.11.6 (2015-05-01)}{
66
\itemize{
77
\item Changes in Rcpp API:
88
\itemize{
9-
\item Unwinding of exceptions was refined to protect against inadvertent
9+
\item The unwinding of exceptions was refined to protect against inadvertent
1010
memory leaks.
11-
\item Header files try harder not to let macroas leak out.
12-
\item Matrices now have a default constructor for zero-by-zero dimension
13-
matrices (via pull request by Dmitrii Meleshko).
14-
\item A new \code{empty()} string constructor was added.
15-
\item Better support for vector with storage policy different from the
16-
default, i.e. \code{NoProtectStorage}.
11+
\item Header files now try even harder not to let macro definitions leak.
12+
\item Matrices have a new default constructor for zero-by-zero dimension
13+
matrices (via a pull request by Dmitrii Meleshko).
14+
\item A new \code{empty()} string constructor was added (via another pull
15+
request).
16+
\item Better support for Vectors with a storage policy different from the
17+
default, i.e. \code{NoProtectStorage}, was added.
1718
}
1819
\item Changes in Rcpp Attributes:
1920
\itemize{
20-
\item Rtools 3.3 is now supported.
21+
\item Rtools 3.3 is now supported.
2122
}
2223
}
2324
}

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)*1000000) + ((min)*10000) + ((rev)*100) + (dev))
2828

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

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

3535
#endif
3636

0 commit comments

Comments
 (0)