Skip to content

Commit 0f7231e

Browse files
committed
release 0.11.0
1 parent 3e2205f commit 0f7231e

File tree

6 files changed

+21
-8
lines changed

6 files changed

+21
-8
lines changed

ChangeLog

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2014-02-02 Dirk Eddelbuettel <edd@debian.org>
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-02-02 JJ Allaire <jj@rstudio.org>
29

310
* R/Attributes.R: Use placeholder for .Call to avoid warning

DESCRIPTION

Lines changed: 3 additions & 3 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.10.6.10
4-
Date: 2014-01-31
3+
Version: 0.11.0
4+
Date: 2014-02-02
55
Authors@R: c(person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "edd@debian.org" ),
66
person("Romain", "Francois", role = "aut", email = "romain@r-enthusiasts.com"),
77
person("JJ", "Allaire", role = "ctb", email = "jj.allaire@gmail.com"),
@@ -40,7 +40,7 @@ Description: The Rcpp package provides R functions as well as a C++ library
4040
package development. Attributes are built on top of Rcpp modules and
4141
their implementation is based on previous work in the inline package.
4242
.
43-
Many examples are included, and around 872 unit tests in 422 unit
43+
Many examples are included, and around 891 unit tests in 430 unit
4444
test functions provide additional usage examples.
4545
.
4646
An earlier version of Rcpp, containing what we now call the 'classic Rcpp

debian/changelog

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
1+
rcpp (0.11.0-1) unstable; urgency=low
2+
3+
* New release
4+
5+
-- Dirk Eddelbuettel <edd@debian.org> Sun, 02 Feb 2014 08:22:46 -0600
6+
17
rcpp (0.10.6-1) unstable; urgency=low
28

39
* New release
410
* debian/control: Set Build-Depends: to current R version
511
* debian/control: Set Standards-Version: to current version
612
* debian/control: Add 'r-cran-codetools' to Build-Depends (as it is
7-
used at preparation for LazuyLoading stage)
13+
used at preparation for LazyLoading stage)
814

915
-- Dirk Eddelbuettel <edd@debian.org> Tue, 29 Oct 2013 09:42:30 -0500
1016

debian/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Description: GNU R package for Seamless R and C++ Integration
4343
package development. Attributes are built on top of Rcpp modules and
4444
their implementation is based on previous work in the inline package.
4545
.
46-
Many examples are included, and around 872 unit tests in 422 unit
46+
Many examples are included, and around 891 unit tests in 430 unit
4747
test functions provide additional usage examples.
4848
.
4949
An earlier version of Rcpp, containing what we now call the 'classic Rcpp

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 [unreleased] Rcpp version 0.11.0 (2014-02-03)}{
5+
\section{Changes in Rcpp version 0.11.0 (2014-02-02)}{
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
@@ -2,7 +2,7 @@
22
//
33
// config.h: Rcpp R/C++ interface class library -- Rcpp configuration
44
//
5-
// Copyright (C) 2010 - 2013 Dirk Eddelbuettel and Romain Francois
5+
// Copyright (C) 2010 - 2014 Dirk Eddelbuettel and Romain Francois
66
//
77
// This file is part of Rcpp.
88
//
@@ -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,10,7)
27+
#define RCPP_VERSION Rcpp_Version(0,11,0)
2828

2929
#endif
3030

0 commit comments

Comments
 (0)