[Rcpp-commits] r204 - in pkg: . inst
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Sat Dec 19 21:00:24 CET 2009
Author: edd
Date: 2009-12-19 21:00:24 +0100 (Sat, 19 Dec 2009)
New Revision: 204
Modified:
pkg/DESCRIPTION
pkg/inst/ChangeLog
Log:
release 0.7.0
Description in DESCRIPTION expanded
Modified: pkg/DESCRIPTION
===================================================================
--- pkg/DESCRIPTION 2009-12-19 19:16:17 UTC (rev 203)
+++ pkg/DESCRIPTION 2009-12-19 20:00:24 UTC (rev 204)
@@ -1,6 +1,6 @@
Package: Rcpp
Title: Rcpp R/C++ interface package
-Version: 0.6.8.3
+Version: 0.7.0
Date: $Date$
Author: Dirk Eddelbuettel with contributions by Simon Urbanek and David Reiss;
based on code written during 2005 and 2006 by Dominick Samperi
@@ -8,8 +8,15 @@
Description: R/C++ interface classes and examples
The Rcpp library maps data types betweeen R and C++, and includes support
for R types real, integer, character, vector, matrix, Date, datetime (i.e.
- POSIXct) at microsecond resolution, data frame, and function. It also
- supports calling R functions from C++. Several examples are included.
+ POSIXct) at microsecond resolution, data frame, and function. Transer to and
+ from simple SEXP objects is particular easy. Calling R functions from C++ is
+ also supported.
+ .
+ C++ code can be 'inlined' and a helper function (from the 'inline' package)
+ will create a C++ function and compile, link and load it which makes C++
+ integration easy.
+ .
+ Several examples are included.
Depends: R (>= 2.0.0), methods
SystemRequirements: None
URL: http://dirk.eddelbuettel.com/code/rcpp.html
Modified: pkg/inst/ChangeLog
===================================================================
--- pkg/inst/ChangeLog 2009-12-19 19:16:17 UTC (rev 203)
+++ pkg/inst/ChangeLog 2009-12-19 20:00:24 UTC (rev 204)
@@ -1,5 +1,10 @@
2009-12-19 Dirk Eddelbuettel <edd at debian.org>
+ * DESCRIPTION: Release 0.7.0
+
+ * DESCRIPTION: Descrition fields reworded and expanded to explicitly
+ mention 'inlining' ability as well as simple SEXP support.
+
* src/RcppSexp.{h,cpp}: Switch to R_ProtectObject and R_ReleaseObject
with a big thanks to Romain for the most appropriate suggestion
* src/RcppSexp.{h,cpp}: Added converters for vectors of
More information about the Rcpp-commits
mailing list