Skip to content

Commit ae3d3ff

Browse files
committed
Release 0.3.4.0.1
1 parent 89a8a8f commit ae3d3ff

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

ChangeLog

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
1+
2024-08-14 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): CRAN Release 0.3.4.0.1
4+
* inst/NEWS.Rd: Release 0.3.4.0.1
5+
6+
2024-08-13 Dirk Eddelbuettel <[email protected]>
7+
8+
* inst/include/Eigen/src/misc/blas.h: Conditionally comment out
9+
xerbla which is now also provided by r-devel (CRAN request)
10+
111
2024-08-12 Dirk Eddelbuettel <[email protected]>
212

3-
* DESCRIPTION (Authors@R): Added, with ORCID IDs for Dirk, Romain, Doug
13+
* DESCRIPTION (Authors@R): Added, with ORCID IDs
414

515
2024-05-16 Dirk Eddelbuettel <[email protected]>
616

DESCRIPTION

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
Package: RcppEigen
22
Type: Package
33
Title: 'Rcpp' Integration for the 'Eigen' Templated Linear Algebra Library
4-
Version: 0.3.4.0.0
5-
Date: 2024-02-28
4+
Version: 0.3.4.0.1
5+
Date: 2024-08-14
66
Authors@R: c(person("Doug", "Bates", role = "aut",
77
comment = c(ORCID = "0000-0001-8316-9503")),
88
person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "[email protected]",
99
comment = c(ORCID = "0000-0001-6419-907X")),
1010
person("Romain", "Francois", role = "aut",
1111
comment = c(ORDID = "0000-0002-2444-4226")),
12-
person("Yixuan", "Qiu", role = "aut"),
12+
person("Yixuan", "Qiu", role = "aut",
13+
comment = c(ORDID = "0000-0003-0109-6692")),
1314
person("Authors of", "Eigen", role = "cph",
1415
comment = "Authorship and copyright in included Eigen library as detailed in inst/COPYRIGHTS"))
1516
Copyright: See the file COPYRIGHTS for various Eigen copyright details

inst/NEWS.Rd

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.4.0.1 (2024-08-14)}{
7+
\itemize{
8+
\item Conditionally comment-out \code{xerbla} in \code{blas.h} as it is
9+
now providedd by R-devel albeit with \code{FC_LEN_T} (per a CRAN request)
10+
\item Minor package updates (continuous integration, badges)
11+
}
12+
}
13+
614
\section{Changes in RcppEigen version 0.3.4.0.0 (2024-02-28)}{
715
\itemize{
816
\item The Eigen version has been upgrade to release 3.4.0 (Yixuan)

inst/include/Eigen/src/misc/blas.h

+4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ typedef long BLASLONG;
1616
typedef unsigned long BLASULONG;
1717
#endif
1818

19+
#if defined(RVERSION)
20+
#if RVERSION < R_Version(4,5,0)
1921
int BLASFUNC(xerbla)(const char *, int *info, int);
22+
#endif
23+
#endif
2024

2125
float BLASFUNC(sdot) (int *, float *, int *, float *, int *);
2226
float BLASFUNC(sdsdot)(int *, float *, float *, int *, float *, int *);

0 commit comments

Comments
 (0)