55Version 0.11.0 of the Rcpp package is now on CRAN and its mirrors.
66
77This new release brings a number of new features, most noticably a simplified
8- build, as well as improvements to existing features and bugfixes. Complete
9- details of the changes implemented between the last announcement for version
10- 0.10.0 and this new can be found in the NEWS and ChangeLog files which are
11- included in the package.
8+ build system, as well as improvements to existing features and bugfixes.
9+
10+ Complete details of the changes implemented between the last announcement for
11+ version 0.10.0 and this new can be found in the NEWS and ChangeLog files
12+ which are included in the package.
1213
1314
1415
@@ -22,8 +23,7 @@ Issue 08) paper (also included in the package as the "Rcpp-introduction" pdf
2223vignette) and a book "Seamless R and C++ Integration with Rcpp" (2013,
2324Springer, useR! Series).
2425
25- As of early 2014, Rcpp is used by over 160 other CRAN packages making it the
26- most widely-used language interface for R.
26+ As of early 2014, Rcpp is used by over 160 other CRAN packages.
2727
2828Several key features of the new 0.11.0 release are described below.
2929
@@ -38,16 +38,17 @@ using Rcpp need to be reinstalled.
3838We provide a simple helper script at
3939https://github.com/RcppCore/rcpp-logs/blob/master/scripts/showReverseRcppDepends.r
4040to identidy which of your currently-installed packages use Rcpp, and need to
41- be rebuilt.
41+ be rebuilt / reinstalled .
4242
4343
4444
4545===== Simpler Building with Rcpp =====
4646
4747Thanks to the 'LinkingTo:' directive, R already instructed the compiler where
4848to fine header files when writing code with Rcpp. The package now uses the
49- registration facilities in R (see Section 5.4 in Writing R Extensions). With
50- just an 'Imports: Rcpp' in DESCRIPTION along with an explicit import
49+ registration facilities in R (see Section 5.4 in Writing R Extensions).
50+
51+ With just an 'Imports: Rcpp' in DESCRIPTION along with an explicit import
5152statement in the NAMESPACE file such 'importFrom(Rcpp, evalCpp)' all required
5253Rcpp code will be properly instantiated without any explicit linking. [ Note
5354that just using 'import(Rcpp)' is not sufficient, but any exported C++
@@ -89,7 +90,7 @@ and Rcpp attributes takes care of the rest.
8990
9091===== Memory management =====
9192
92- A number of internal data structures were rewritten.
93+ A number of internal data structures have been rewritten.
9394
9495
9596
@@ -129,7 +130,7 @@ used resource under the [rcpp] tag:
129130On behalf of the Rcpp Core team,
130131
131132 Dirk Eddelbuettel
132- January 2014
133+ February 2014
133134
134135
135136
0 commit comments