Skip to content

Commit 420f4cf

Browse files
committed
release 0.11.3
1 parent fce4659 commit 420f4cf

File tree

4 files changed

+22
-13
lines changed

4 files changed

+22
-13
lines changed

ChangeLog

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
2014-09-23 JJ Allaire <[email protected]>
1+
2014-09-27 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION: Release 0.11.3
4+
* inst/NEWS.Rd: Release 0.11.3
5+
* inst/include/Rcpp/config.h: Release 0.11.3
6+
7+
* ChangeLog: Added a few more entries based on commit log
8+
* inst/NEWS.Rd: Idem
9+
10+
2014-09-26 JJ Allaire <[email protected]>
211

312
* DESCRIPTION: Bump version to enable checking for dryRun.
413

DESCRIPTION

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
3-
Version: 0.11.2.7
4-
Date: 2014-09-21
3+
Version: 0.11.3
4+
Date: 2014-09-27
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey,
66
Douglas Bates, and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>
8-
Description: The Rcpp package provides R functions as well as a C++ classes
9-
which offer a seamless integration of R and C++. Many R data types and objects
10-
can be mapped back and forth to C++ equivalents which facilitates both writing
11-
of new code as well as easier integration of third-party libraries. Extensive
12-
documentation about Rcpp is provided by several vignettes included in this
13-
package, via the Rcpp Gallery site at http://gallery.rcpp.org, the paper by
14-
Eddelbuettel and Francois (2011, JSS), and the book by Eddelbuettel (2013,
15-
Springer); see 'citation("Rcpp")' for details on these last two.
8+
Description: The Rcpp package provides R functions as well as C++ classes which
9+
offer a seamless integration of R and C++. Many R data types and objects can be
10+
mapped back and forth to C++ equivalents which facilitates both writing of new
11+
code as well as easier integration of third-party libraries. Documentation
12+
about Rcpp is provided by several vignettes included in this package, via the
13+
Rcpp Gallery site at http://gallery.rcpp.org, the paper by Eddelbuettel and
14+
Francois (2011, JSS), and the book by Eddelbuettel (2013, Springer); see
15+
'citation("Rcpp")' for details on these last two.
1616
Depends: R (>= 3.0.0)
1717
Imports: methods
1818
Suggests: RUnit, inline, rbenchmark, highlight, pkgKitten (>= 0.1.2)

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.3 (2014-xx-yy)}{
5+
\section{Changes in Rcpp version 0.11.3 (2014-09-27)}{
66
\itemize{
77
\item Changes in Rcpp API:
88
\itemize{

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,2)
27+
#define RCPP_VERSION Rcpp_Version(0,11,3)
2828

2929
#endif
3030

0 commit comments

Comments
 (0)