[Rcpp-commits] r3001 - in pkg/Rcpp: . debian inst inst/include/Rcpp
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Tue Apr 12 17:13:52 CEST 2011
Author: edd
Date: 2011-04-12 17:13:52 +0200 (Tue, 12 Apr 2011)
New Revision: 3001
Modified:
pkg/Rcpp/ChangeLog
pkg/Rcpp/DESCRIPTION
pkg/Rcpp/debian/changelog
pkg/Rcpp/inst/NEWS
pkg/Rcpp/inst/include/Rcpp/config.h
Log:
Release 0.9.4
Modified: pkg/Rcpp/ChangeLog
===================================================================
--- pkg/Rcpp/ChangeLog 2011-04-12 12:42:21 UTC (rev 3000)
+++ pkg/Rcpp/ChangeLog 2011-04-12 15:13:52 UTC (rev 3001)
@@ -1,7 +1,14 @@
+2011-04-12 Dirk Eddelbuettel <edd at debian.org>
+
+ * DESCRIPTION: Release 0.9.4
+ * inst/NEWS: Release 0.9.4
+ * inst/include/Rcpp/config.h: Release 0.9.4
+ * debian/*: Similarly updated for new release to Debian
+
2011-04-12 Romain Francois <romain at r-enthusiasts.com>
* inst/unitTests/testRcppModules/src/stdVector.cpp: compiler disambiguation
-
+
* src/r_cast.cpp: use a callback to R's "as.character" instead of calling
Rf_coerceVector, which did not work as expected for factors
Modified: pkg/Rcpp/DESCRIPTION
===================================================================
--- pkg/Rcpp/DESCRIPTION 2011-04-12 12:42:21 UTC (rev 3000)
+++ pkg/Rcpp/DESCRIPTION 2011-04-12 15:13:52 UTC (rev 3001)
@@ -1,6 +1,6 @@
Package: Rcpp
Title: Seamless R and C++ Integration
-Version: 0.9.3.1
+Version: 0.9.4
Date: $Date$
Author: Dirk Eddelbuettel and Romain Francois,
with contributions by Douglas Bates and John Chambers
@@ -30,7 +30,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 751 unit tests in 336 unit test functions
provide additional usage examples.
.
An earlier version of Rcpp, containing what we now call the 'classic Rcpp
Modified: pkg/Rcpp/debian/changelog
===================================================================
--- pkg/Rcpp/debian/changelog 2011-04-12 12:42:21 UTC (rev 3000)
+++ pkg/Rcpp/debian/changelog 2011-04-12 15:13:52 UTC (rev 3001)
@@ -1,3 +1,9 @@
+rcpp (0.9.4-1) unstable; urgency=low
+
+ * New release
+
+ -- Dirk Eddelbuettel <edd at debian.org> Tue, 12 Apr 2011 10:12:37 -0500
+
rcpp (0.9.3-1) unstable; urgency=low
* New release
Modified: pkg/Rcpp/inst/NEWS
===================================================================
--- pkg/Rcpp/inst/NEWS 2011-04-12 12:42:21 UTC (rev 3000)
+++ pkg/Rcpp/inst/NEWS 2011-04-12 15:13:52 UTC (rev 3001)
@@ -1,12 +1,18 @@
-0.9.4 (future)
+0.9.4 2011-04-12
o New R function "loadRcppModules" to load Rcpp modules automatically
from a package. This function must be called from the .onLoad function
and works with the "RcppModules" field of the package's DESCRIPTION file
- o A CITATION file for the published JSS paper has been added, and a
- reference was added to Rcpp-package.Rd and the different vignettes
+ o The Modules example wrapped the STL std::vector received some editing
+ to disambiguate some symbols the newer compilers did not like
+ o Coercing of vectors of factors is now done with an explicit callback
+ to R's "as.character()" as Rf_coerceVector no longer plays along
+
+ o A CITATION file for the published JSS paper has been added, and
+ references were added to Rcpp-package.Rd and the different vignettes
+
0.9.3 2011-04-05
o Fixed a bug in which modules code was not behaving when compiled
Modified: pkg/Rcpp/inst/include/Rcpp/config.h
===================================================================
--- pkg/Rcpp/inst/include/Rcpp/config.h 2011-04-12 12:42:21 UTC (rev 3000)
+++ pkg/Rcpp/inst/include/Rcpp/config.h 2011-04-12 15:13:52 UTC (rev 3001)
@@ -27,7 +27,7 @@
#endif
#define Rcpp_Version(v,p,s) (((v) * 65536) + ((p) * 256) + (s))
-#define RCPP_VERSION Rcpp_Version(0,9,3)
+#define RCPP_VERSION Rcpp_Version(0,9,4)
#endif
More information about the Rcpp-commits
mailing list