Skip to content

Commit edd9bef

Browse files
committed
Rcpp release 0.10.5
1 parent 9240536 commit edd9bef

File tree

7 files changed

+35
-16
lines changed

7 files changed

+35
-16
lines changed

ChangeLog

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,33 @@
1+
2013-09-28 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* DESCRIPTION: Release 0.10.5
4+
* inst/NEWS.Rd: Release 0.10.5
5+
* inst/include/Rcpp/config.h: Release 0.10.5
6+
* debian/*: Similarly updated for new release to Debian
7+
8+
* vignettes/Rcpp-unitTests.Rnw: Switched to Charter font just like
9+
the other eight vignettes
10+
111
2013-09-28 Romain Francois <romain@r-enthusiasts.com>
212

3-
* include/Rcpp/module/Module_generated_CppMethod.h : more code bloat to handle
4-
flexible semantics for passing parameters in methods
5-
* include/Rcpp/module/Module_generated_Pointer_CppMethod.h : same
13+
* include/Rcpp/module/Module_generated_CppMethod.h : more code bloat
14+
to handle flexible semantics for passing parameters in methods
15+
* include/Rcpp/module/Module_generated_Pointer_CppMethod.h : same
616
* inst/unitTests/cpp/Module.cpp: testing the above
7-
* unitTests/runit.Module.R: testing
8-
17+
* unitTests/runit.Module.R: testing
18+
919
2013-09-27 Dirk Eddelbuettel <edd@debian.org>
1020

1121
* vignettes/Rcpp-unitTests.Rnw: Re-activated vignette
1222
* DESCRIPTION: Version number bumped to 0.10.4.6
1323

1424
2013-09-27 Romain Francois <romain@r-enthusiasts.com>
1525

16-
* include/Rcpp/module/Module_generated_CppFunction.h : regenerated to
26+
* include/Rcpp/module/Module_generated_CppFunction.h : regenerated to
1727
use input_parameter traits for more flexible parameter passing strategy
1828
* unitTests/cpp/Module.cpp : more testing
19-
* unitTests/runit.Module.R : more testing
20-
29+
* unitTests/runit.Module.R : more testing
30+
2131
2013-09-22 Dirk Eddelbuettel <edd@debian.org>
2232

2333
* inst/include/Rcpp/sugar/functions/diff.h: Declare set_previous

DESCRIPTION

Lines changed: 2 additions & 2 deletions
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.10.4.6
3+
Version: 0.10.5
44
Date: $Date$
55
Author: Dirk Eddelbuettel and Romain Francois, with contributions
66
by Douglas Bates, John Chambers and JJ Allaire
@@ -37,7 +37,7 @@ Description: The Rcpp package provides R functions as well as a C++ library
3737
package development. Attributes are built on top of Rcpp modules and
3838
their implementation is based on previous work in the inline package.
3939
.
40-
Many examples are included, and around 881 unit tests in 412 unit
40+
Many examples are included, and around 872 unit tests in 422 unit
4141
test functions provide additional usage examples.
4242
.
4343
An earlier version of Rcpp, containing what we now call the 'classic Rcpp

debian/changelog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
rcpp (0.10.5-1) unstable; urgency=low
2+
3+
* New release
4+
5+
* debian/control: Set Build-Depends: to current R version
6+
7+
-- Dirk Eddelbuettel <edd@debian.org> Sat, 28 Sep 2013 07:28:48 -0500
8+
19
rcpp (0.10.4-1) unstable; urgency=low
210

311
* New release

debian/control

Lines changed: 2 additions & 2 deletions
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.0.1), cdbs
5+
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 3.0.2), cdbs
66
Standards-Version: 3.9.4
77
Homepage: http://dirk.eddelbuettel.com/code/rcpp.html
88

@@ -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 881 unit tests in 412 unit
46+
Many examples are included, and around 872 unit tests in 422 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 Rcpp version 0.10.5 (future)}{
5+
\section{Changes in Rcpp version 0.10.5 (2013-09-28)}{
66
\itemize{
77
\item Changes in R code:
88
\itemize{

inst/include/Rcpp/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#define Rcpp_Version(v,p,s) (((v) * 65536) + ((p) * 256) + (s))
2626

2727
// All three digits have to be integers for g++-4.7 or later
28-
#define RCPP_VERSION Rcpp_Version(0,10,4)
28+
#define RCPP_VERSION Rcpp_Version(0,10,5)
2929

3030
// Rcpp 0.10.3 has initial support for new preserve/release semantics
3131
// This switch enables a rollback to the standard R preserve/release semantics

vignettes/Rcpp-unitTests.Rnw

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
\usepackage{vmargin}
77
\setmargrb{0.75in}{0.75in}{0.75in}{0.75in}
88

9-
\RequirePackage{ae,mathpple} % ae as a default font pkg works with Sweave
10-
\RequirePackage[T1]{fontenc}
9+
\usepackage{microtype} %% cf http://www.khirevich.com/latex/microtype/
10+
\usepackage[T1]{fontenc} %% cf http://www.khirevich.com/latex/font/
11+
\usepackage[bitstream-charter]{mathdesign} %% cf http://www.khirevich.com/latex/font/
1112

1213
<<echo=FALSE,print=FALSE>>=
1314
require(Rcpp)

0 commit comments

Comments
 (0)