Skip to content

Commit 2d342d1

Browse files
committed
updated ChangeLog and NEWS.Rd
1 parent 7d556da commit 2d342d1

File tree

2 files changed

+51
-5
lines changed

2 files changed

+51
-5
lines changed

ChangeLog

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,31 @@
1+
2015-09-08 Florian Plaza Onate <[email protected]>
2+
3+
* inst/include/Rcpp/Dimension.h: Correct creation and access of large
4+
matrices
5+
* inst/include/Rcpp/vector/Matrix.h: Ditto
6+
7+
2015-09-07 Dirk Eddelbuettel <[email protected]>
8+
9+
* inst/include/Rcpp/Nullable.h: New class for objects which may be NULL
10+
* inst/unitTests/cpp/Vector.cpp: Unit tests for Nullable
11+
* inst/unitTests/runit.Vector.R: Ditto
12+
13+
2015-09-06 Daniel C. Dillon <[email protected]>
14+
15+
* inst/include/Rcpp/String.h: Make strings and string_proxies comparable
16+
* inst/unitTests/cpp/String.cpp: Unit tests for above
17+
* inst/unitTests/runit.String.R: Ditto
18+
19+
2015-09-05 Daniel C. Dillon <[email protected]>
20+
21+
* inst/include/Rcpp/vector/Matrix.h: Matrix now has appropriate operator<<
22+
* inst/include/Rcpp/vector/Vector.h: Vector now has appropriate operator<<
23+
* inst/unitTests/cpp/Vector.cpp: Unit tests for above
24+
125
2015-09-01 Florian Plaza Onate <[email protected]>
26+
227
* inst/include/Rcpp/vector/Subsetter.h: Allow logical subsets to be
3-
assigned to a vector of size 1
28+
assigned to a vector of size 1
429
(pull request #349, discussed in issue #345)
530
* inst/unitTests/cpp/Subset.cpp: Add unit test for above
631
* inst/unitTests/runit.subset.R: Ditto

inst/NEWS.Rd

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,45 @@
66
\itemize{
77
\item Changes in Rcpp API:
88
\itemize{
9-
\item Correct use of WIN32 instead of _WIN32 to please Windows 10
9+
\item Correct use of WIN32 instead of _WIN32 to please Windows 10
1010
\item Add an assignment operator to \code{DimNameProxy} (PR #339 by Florian)
1111
\item Add vector and matrix accessors \code{.at()} with bounds checking
1212
(PR #342 by Florian)
1313
\item Correct character vector conversion from single char (PR #344 by
1414
Florian fixing issue #343)
15-
\item Correct on use of \code{R_xlen_t} back to \code{size_t} (PR #348 by Romain)
15+
\item Correct on use of \code{R_xlen_t} back to \code{size_t} (PR #348 by
16+
Romain)
17+
\item Correct subsetting code to allow for single assignment (PR #349 by
18+
Florian)
19+
\item Enable subset assignment on left and righ-hand side (PR #353 by
20+
Qiang, fixing issue #345)
21+
\item Refreshed to included \code{tinyformat} template library (PR #357 by
22+
Dirk, issue #356)
23+
\item Add \code{operator<<()} for vectors and matrices (PR #361 by Dan
24+
fixing issue #239)
25+
\item Make \code{String} and \code{String_Proxy} objects comparable (PR #366 by Dan
26+
fixing issue #191)
27+
\item Add a new class \code{Nullable} for objects which may be \code{NULL}
28+
(PR #368 by Dirk and Dan, fixing issue #363)
29+
\item Correct creation and access of large matrices (PR #370 by Florian,
30+
fixing issue #369)
1631
}
1732
\item Changes in Rcpp Attributes:
1833
\itemize{
1934
\item Correctly reset directory in case of no-rebuilding but Windows code
20-
(PR #335)
35+
(PR #335 by Dirk)
2136
}
2237
\item Changes in Rcpp Modules:
2338
\itemize{
2439
\item We no longer define multiple Modules objects named \code{World} in
25-
the unit tests with was seen to have a bad effect with R 3.2.2 or later.
40+
the unit tests with was seen to have a bad effect with R 3.2.2 or later
41+
(PR #351 by Dirk fixing issue #350).
2642
\item Applied patch by Kurt Hornik which improves how Rcpp loads Modules
43+
(PR #353 by Dirk)
44+
}
45+
\item Changes in Rcpp Documentation:
46+
\itemize{
47+
\item The \code{Rcpp.bib} file with bibliographic references was updated.
2748
}
2849
}
2950
}

0 commit comments

Comments
 (0)