[Rcpp-commits] r2086 - in pkg/Rcpp: . debian inst
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Thu Sep 9 19:23:09 CEST 2010
Author: edd
Date: 2010-09-09 19:23:09 +0200 (Thu, 09 Sep 2010)
New Revision: 2086
Modified:
pkg/Rcpp/DESCRIPTION
pkg/Rcpp/NEWS
pkg/Rcpp/debian/changelog
pkg/Rcpp/debian/control
pkg/Rcpp/inst/ChangeLog
Log:
Release 0.8.6
Modified: pkg/Rcpp/DESCRIPTION
===================================================================
--- pkg/Rcpp/DESCRIPTION 2010-09-08 19:56:26 UTC (rev 2085)
+++ pkg/Rcpp/DESCRIPTION 2010-09-09 17:23:09 UTC (rev 2086)
@@ -1,6 +1,6 @@
Package: Rcpp
Title: Seamless R and C++ Integration
-Version: 0.8.5.10
+Version: 0.8.5.11
Date: $Date$
Author: Dirk Eddelbuettel and Romain Francois, with contributions
by Simon Urbanek, David Reiss and Douglas Bates; based on code written during
@@ -29,7 +29,7 @@
into C++. Sugar takes advantage of lazy evaluation and expression templates
to achieve great performance while exposing a syntax that is much nicer
to use than the equivalent low-level loop code. The "Rcpp-sugar" vignette
- gives an overview of the feature
+ gives an overview of the feature.
.
Several examples are included, and 735 unit tests in 329 unit test functions
provide additional usage examples.
Modified: pkg/Rcpp/NEWS
===================================================================
--- pkg/Rcpp/NEWS 2010-09-08 19:56:26 UTC (rev 2085)
+++ pkg/Rcpp/NEWS 2010-09-09 17:23:09 UTC (rev 2086)
@@ -1,20 +1,35 @@
-0.8.6 (future)
+0.8.6 2010-09-09
o new macro RCPP_VERSION and Rcpp_Version to allow conditional compiling
- based on the version of Rcpp
+ based on the version of Rcpp
- #if defined(RCPP_VERSION) && RCPP_VERSION >= Rcpp_Version(0,8,6)
- ...
- #endif
+ #if defined(RCPP_VERSION) && RCPP_VERSION >= Rcpp_Version(0,8,6)
+ ...
+ #endif
o new sugar functions for statistical distributions (d-p-q-r functions)
with distributions : unif, norm, gamma, chisq, lnorm, weibull, logis,
f, pois, binom, t, beta.
+ o new ctor for Vector taking size and function pointer so that for example
+
+ NumericVector( 10, norm_rand )
+
+ generates a N(0,1) vector of size 10
+
+ o added binary operators for complex numbers, as well as sugar support
+
+ o more sugar math functions: sqrt, log, log10, exp, sin, cos, ...
+
o new vignette Rcpp-quickref : quick reference guide of Rcpp API
o various patches to comply with solaris/suncc stricter standards
+ o minor enhancements to ConvolutionBenchmark example
+
+ o simplified src/Makefile to no longer require GNU make; packages using
+ Rcpp still do for the compile-time test of library locations
+
0.8.5 2010-07-25
o speed improvements. Vector::names, RObject::slot have been improved
Modified: pkg/Rcpp/debian/changelog
===================================================================
--- pkg/Rcpp/debian/changelog 2010-09-08 19:56:26 UTC (rev 2085)
+++ pkg/Rcpp/debian/changelog 2010-09-09 17:23:09 UTC (rev 2086)
@@ -1,3 +1,9 @@
+rcpp (0.8.6-1) unstable; urgency=low
+
+ * New release
+
+ -- Dirk Eddelbuettel <edd at debian.org> Thu, 09 Sep 2010 12:21:21 -0500
+
rcpp (0.8.5-1) unstable; urgency=low
* New release
Modified: pkg/Rcpp/debian/control
===================================================================
--- pkg/Rcpp/debian/control 2010-09-08 19:56:26 UTC (rev 2085)
+++ pkg/Rcpp/debian/control 2010-09-09 17:23:09 UTC (rev 2086)
@@ -3,7 +3,7 @@
Priority: optional
Maintainer: Dirk Eddelbuettel <edd at debian.org>
Build-Depends: debhelper (>= 7.0.0), r-base-dev (>= 2.11.1), cdbs
-Standards-Version: 3.8.4
+Standards-Version: 3.9.1
Homepage: http://dirk.eddelbuettel.com/code/rcpp.html
Package: r-cran-rcpp
Modified: pkg/Rcpp/inst/ChangeLog
===================================================================
--- pkg/Rcpp/inst/ChangeLog 2010-09-08 19:56:26 UTC (rev 2085)
+++ pkg/Rcpp/inst/ChangeLog 2010-09-09 17:23:09 UTC (rev 2086)
@@ -1,3 +1,9 @@
+2010-09-09 Dirk Eddelbuettel <edd at debian.org>
+
+ * DESCRIPTION: Release 0.8.6
+
+ * debian/*: Similarly updated for new release to Debian
+
2010-09-08 Dirk Eddelbuettel <edd at debian.org>
* inst/include/RcppCommon.h: Also include typeinfo header file
More information about the Rcpp-commits
mailing list