[Rinside-commits] r211 - in pkg: . inst inst/examples/qt
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Sun Apr 24 17:40:28 CEST 2011
Author: edd
Date: 2011-04-24 17:40:28 +0200 (Sun, 24 Apr 2011)
New Revision: 211
Modified:
pkg/ChangeLog
pkg/DESCRIPTION
pkg/inst/NEWS
pkg/inst/examples/qt/main.cpp
Log:
Release 0.2.4
Modified: pkg/ChangeLog
===================================================================
--- pkg/ChangeLog 2011-04-20 15:14:35 UTC (rev 210)
+++ pkg/ChangeLog 2011-04-24 15:40:28 UTC (rev 211)
@@ -1,3 +1,7 @@
+2011-04-24 Dirk Eddelbuettel <edd at debian.org>
+
+ * DESCRIPTION: Release 0.2.4
+
2011-04-20 Dirk Eddelbuettel <edd at debian.org>
* inst/examples/mpi/*cpp: Minor updates and simplifications
Modified: pkg/DESCRIPTION
===================================================================
--- pkg/DESCRIPTION 2011-04-20 15:14:35 UTC (rev 210)
+++ pkg/DESCRIPTION 2011-04-24 15:40:28 UTC (rev 211)
@@ -1,6 +1,6 @@
Package: RInside
Title: C++ classes to embed R in C++ applications
-Version: 0.2.3.2
+Version: 0.2.4
Date: $Date$
Author: Dirk Eddelbuettel and Romain Francois
Maintainer: Dirk Eddelbuettel and Romain Francois <RomainAndDirk at r-enthusiasts.com>
@@ -14,7 +14,6 @@
seg.fault and debugging help would be appreciated. An older version worked
fine, but there may have been some Rcpp changes which caused this.)
.
-
Numerous examples are provided in the three subdirectories the examples/
directory of the installed package: standard, mpi (for parallel computing)
and qt (showing how to embed RInside inside a Qt application).
Modified: pkg/inst/NEWS
===================================================================
--- pkg/inst/NEWS 2011-04-20 15:14:35 UTC (rev 210)
+++ pkg/inst/NEWS 2011-04-24 15:40:28 UTC (rev 211)
@@ -1,4 +1,4 @@
-0.2.4 2011-04-xx
+0.2.4 2011-04-24
o Minor code cleanups in initialization code
Modified: pkg/inst/examples/qt/main.cpp
===================================================================
--- pkg/inst/examples/qt/main.cpp 2011-04-20 15:14:35 UTC (rev 210)
+++ pkg/inst/examples/qt/main.cpp 2011-04-24 15:40:28 UTC (rev 211)
@@ -7,7 +7,6 @@
#include <QApplication>
-
#include "qtdensity.h"
int main(int argc, char *argv[])
@@ -15,6 +14,6 @@
RInside R(argc, argv); // create an embedded R instance
QApplication app(argc, argv);
- QtDensity qtdensity(R);
+ QtDensity qtdensity(R); // pass R inst. by reference
return app.exec();
}
More information about the Rinside-commits
mailing list