Skip to content

Commit 88a3732

Browse files
committed
roll minor version
1 parent 2c27ae6 commit 88a3732

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
2021-06-07 Dirk Eddelbuettel <edd@debian.org>
22

3+
* DESCRIPTION (Date, Version): Roll minor version
4+
35
* inst/tinytest/test_misc.R: New test file
46
* inst/tinytest/test_fastLm.R: Added tests
57

8+
* R/fastLm.R: Add single one-line nocov tag
9+
610
* .Rbuildignore: Add .covignore and .codecov.yml
711

812
2021-06-06 Dirk Eddelbuettel <edd@debian.org>

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: RcppEigen
22
Type: Package
33
Title: 'Rcpp' Integration for the 'Eigen' Templated Linear Algebra Library
4-
Version: 0.3.3.9.1
5-
Date: 2020-12-17
4+
Version: 0.3.3.9.2
5+
Date: 2021-06-07
66
Author: Douglas Bates, Dirk Eddelbuettel, Romain Francois, and Yixuan Qiu;
77
the authors of Eigen for the included version of Eigen
88
Maintainer: Dirk Eddelbuettel <edd@debian.org>

R/fastLm.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ predict.fastLm <- function(object, newdata=NULL, ...) {
109109
if (!is.null(object$formula)) {
110110
x <- model.matrix(object$formula, newdata)
111111
} else {
112-
x <- newdata
112+
x <- newdata # #nocov
113113
}
114114
y <- as.vector(x %*% coef(object))
115115
}

inst/NEWS.Rd

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
\newcommand{\ghpr}{\href{https://github.com/RcppCore/RcppEigen/pull/#1}{##1}}
44
\newcommand{\ghit}{\href{https://github.com/RcppCore/RcppEigen/issues/#1}{##1}}
55

6+
\section{Changes in RcppEigen version 0.3.3.9.2 (2021-06-07)}{
7+
\itemize{
8+
\item Added test coverage in continuous integration
9+
\item Added new tests to increase test coverage
10+
}
11+
}
12+
613
\section{Changes in RcppEigen version 0.3.3.9.1 (2020-12-17)}{
714
\itemize{
815
\item Upgraded to Eigen 3.3.9 (Dirk in \ghpr{92} fixing \ghit{91}).

0 commit comments

Comments
 (0)