Skip to content

Commit 8166c3c

Browse files
committed
roll minor version, update NEWS and ChangeLog
1 parent 30ff4a1 commit 8166c3c

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

ChangeLog

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
2018-10-02 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Date, Version): Roll minor version
4+
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
5+
6+
2018-10-02 Romain Francois <[email protected]>
7+
8+
* inst/include/Rcpp/vector/Matrix.h: Init nrow in Matrix(no_init) ctor
9+
* inst/unitTests/runit.Matrix.R: New test
10+
* inst/unitTests/cpp/Matrix.cpp: Idem
11+
112
2018-09-30 Dirk Eddelbuettel <[email protected]>
213

314
* man/RcppUnitTests.Rd: Remove \details{} with conditional code which

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
3-
Version: 0.12.19.1
4-
Date: 2018-09-27
3+
Version: 0.12.19.2
4+
Date: 2018-10-02
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
66
Nathan Russell, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>

inst/NEWS.Rd

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
\item The empty destructor for the \code{Date} class was removed
1111
to please g++-9 (prerelease) and \code{-Wdeprecated-copy} (Dirk).
1212
\item The constructor for \code{NumericMatrix(not_init(n,k))} was
13-
corrected (Romain in \ghpr{904} and Dirk in \ghpr{905}).
13+
corrected (Romain in \ghpr{904}, Dirk in \ghpr{905}, and also
14+
Romain in \ghpr{908} fixing \ghpr{907}).
1415
}
1516
\item Changes in Rcpp Deployment:
1617
\itemize{

inst/include/Rcpp/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
#define RCPP_VERSION Rcpp_Version(0,12,19)
3030

3131
// the current source snapshot
32-
#define RCPP_DEV_VERSION RcppDevVersion(0,12,19,0)
32+
#define RCPP_DEV_VERSION RcppDevVersion(0,12,19,2)
3333

3434
#endif

0 commit comments

Comments
 (0)