[Rcpp-commits] r3151 - in pkg/Rcpp: . debian inst inst/include/Rcpp

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Wed Jul 27 02:19:38 CEST 2011


Author: edd
Date: 2011-07-27 02:19:38 +0200 (Wed, 27 Jul 2011)
New Revision: 3151

Modified:
   pkg/Rcpp/ChangeLog
   pkg/Rcpp/DESCRIPTION
   pkg/Rcpp/debian/changelog
   pkg/Rcpp/debian/control
   pkg/Rcpp/inst/NEWS
   pkg/Rcpp/inst/include/Rcpp/config.h
Log:
Release 0.9.6


Modified: pkg/Rcpp/ChangeLog
===================================================================
--- pkg/Rcpp/ChangeLog	2011-07-26 22:53:05 UTC (rev 3150)
+++ pkg/Rcpp/ChangeLog	2011-07-27 00:19:38 UTC (rev 3151)
@@ -1,4 +1,4 @@
-2011-07-xx  Dirk Eddelbuettel  <edd at debian.org>
+2011-07-26  Dirk Eddelbuettel  <edd at debian.org>
 
         * DESCRIPTION: Release 0.9.6
         * inst/NEWS: Release 0.9.6

Modified: pkg/Rcpp/DESCRIPTION
===================================================================
--- pkg/Rcpp/DESCRIPTION	2011-07-26 22:53:05 UTC (rev 3150)
+++ pkg/Rcpp/DESCRIPTION	2011-07-27 00:19:38 UTC (rev 3151)
@@ -1,6 +1,6 @@
 Package: Rcpp
 Title: Seamless R and C++ Integration
-Version: 0.9.5.1
+Version: 0.9.6
 Date: $Date$
 Author: Dirk Eddelbuettel and Romain Francois, 
  with contributions by Douglas Bates and John Chambers

Modified: pkg/Rcpp/debian/changelog
===================================================================
--- pkg/Rcpp/debian/changelog	2011-07-26 22:53:05 UTC (rev 3150)
+++ pkg/Rcpp/debian/changelog	2011-07-27 00:19:38 UTC (rev 3151)
@@ -2,7 +2,7 @@
 
   * New release
 
- -- Dirk Eddelbuettel <edd at debian.org>  Sat, 23 Jul 2011 09:13:48 -0500
+ -- Dirk Eddelbuettel <edd at debian.org>  Tue, 26 Jul 2011 19:18:20 -0500
 
 rcpp (0.9.5-1) unstable; urgency=low
 

Modified: pkg/Rcpp/debian/control
===================================================================
--- pkg/Rcpp/debian/control	2011-07-26 22:53:05 UTC (rev 3150)
+++ pkg/Rcpp/debian/control	2011-07-27 00:19:38 UTC (rev 3151)
@@ -36,7 +36,7 @@
  to use than the equivalent low-level loop code. The "Rcpp-sugar" vignette
  gives an overview of the feature.
  .
- Several examples are included, and 753 unit tests in 335 unit test functions
+ Several examples are included, and 753 unit tests in 338 unit test functions
  provide additional usage examples.
  .
  An earlier version of Rcpp, containing what we now call the 'classic Rcpp

Modified: pkg/Rcpp/inst/NEWS
===================================================================
--- pkg/Rcpp/inst/NEWS	2011-07-26 22:53:05 UTC (rev 3150)
+++ pkg/Rcpp/inst/NEWS	2011-07-27 00:19:38 UTC (rev 3151)
@@ -1,15 +1,24 @@
-0.9.6   (future)
+0.9.6   2011-07-26
 
+    o   Added helper traits to facilitate implementation of the RcppEigen
+	package: The is_eigen_base traits identifies if a class derives from
+	EigenBase using SFINAE; and new dispatch layer was added to wrap() to
+	help RcppEigen
+
     o   XPtr now accepts a second template parameter, which is a function
-        taking a pointer to the target class. This allows the developper to supply
-        his/her own finalizer. The template parameter has a default value
-        which retains the original behaviour (calling delete on the pointer)
+        taking a pointer to the target class. This allows the developper to
+        supply his/her own finalizer. The template parameter has a default
+        value which retains the original behaviour (calling delete on the
+        pointer)
 
     o   New example RcppGibbs, extending Sanjog Misra's Rcpp illustration of
         Darren Wilkinson's comparison of MCMC Gibbs Sampler implementations;
 	also added short timing on Normal and Gaussian RNG draws between Rcpp
 	and GSL as R's rgamma() is seen to significantly slower
 
+    o   New example on recursively computing a Fibonacci number using Rcpp and
+        comparing this to R and byte-compiled R for a significant speed gain
+
 0.9.5   2011-07-05
 
     o   New Rcpp-FAQ examples on using the plugin maker for inline's

Modified: pkg/Rcpp/inst/include/Rcpp/config.h
===================================================================
--- pkg/Rcpp/inst/include/Rcpp/config.h	2011-07-26 22:53:05 UTC (rev 3150)
+++ pkg/Rcpp/inst/include/Rcpp/config.h	2011-07-27 00:19:38 UTC (rev 3151)
@@ -27,7 +27,7 @@
 #endif
 
 #define Rcpp_Version(v,p,s) (((v) * 65536) + ((p) * 256) + (s))
-#define RCPP_VERSION Rcpp_Version(0,9,5)
+#define RCPP_VERSION Rcpp_Version(0,9,6)
 
 #endif
 



More information about the Rcpp-commits mailing list