Skip to content

Commit f0db320

Browse files
committed
updated draft announcement
1 parent 795b189 commit f0db320

File tree

2 files changed

+18
-15
lines changed

2 files changed

+18
-15
lines changed

ChangeLog

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,17 @@
99
* inst/include/Rcpp/Benchmark/Timer.h: Reverted back to using
1010
iterators via use of anonymous namespace for accessors
1111

12-
2014-01-31 JJ Allaire <[email protected]>
13-
14-
* R/Attributes.R: Embedded R code chunks in sourceCpp are now
15-
executed within the working directory of the C++ source file.
12+
* inst/announce/ANNOUNCE-0.11.0.txt: Updated
1613

1714
2014-01-31 Dirk Eddelbuettel <[email protected]>
1815

1916
* man/Rcpp.package.skeleton.Rd: Also updated
2017

18+
2014-01-31 JJ Allaire <[email protected]>
19+
20+
* R/Attributes.R: Embedded R code chunks in sourceCpp are now
21+
executed within the working directory of the C++ source file.
22+
2123
2014-01-30 Dirk Eddelbuettel <[email protected]>
2224

2325
* vignettes/Rcpp-package.Rnw: Updates for upcoming release

inst/announce/ANNOUNCE-0.11.0.txt

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
Version 0.11.0 of the Rcpp package is now on CRAN and its mirrors.
66

77
This 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
2223
vignette) and a book "Seamless R and C++ Integration with Rcpp" (2013,
2324
Springer, 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

2828
Several key features of the new 0.11.0 release are described below.
2929

@@ -38,16 +38,17 @@ using Rcpp need to be reinstalled.
3838
We provide a simple helper script at
3939
https://github.com/RcppCore/rcpp-logs/blob/master/scripts/showReverseRcppDepends.r
4040
to 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

4747
Thanks to the 'LinkingTo:' directive, R already instructed the compiler where
4848
to 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
5152
statement in the NAMESPACE file such 'importFrom(Rcpp, evalCpp)' all required
5253
Rcpp code will be properly instantiated without any explicit linking. [ Note
5354
that 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:
129130
On behalf of the Rcpp Core team,
130131

131132
Dirk Eddelbuettel
132-
January 2014
133+
February 2014
133134

134135

135136

0 commit comments

Comments
 (0)