NEWS | R Documentation |
Remove 'AC_PROG_CC' from 'configure.ac' per CRAN wish
Two function prototypes were updated for clang-15
.
GitHub Actions were updated to checkout version 3.
The UCRT Makefile was updated
Minor edits to README.md were made
Tests of the client package now skip if no LIB_GSL is set
The configure
files were updated to the standard of
version 2.69 following a CRAN request
The pdf vignette was extended by a small subsection (Dirk).
The CI setup was updated to use run.sh
from
r-ci (Dirk).
The windows build was updated to GSL 2.7, and UCRT support was added (Jeroen in #28).
A few missing inline
statements were added to the
headers fixing a (genuine) error that was seen only on Solaris (Dirk).
The nice colNorm
example is now in a file by itself,
the previous versions are off in a new file colNorm_old.cpp
(Dirk).
The README.me now sports two new badges (Dirk).
Travis CI was updated to 'bionic' and R 4.0 (Dirk).
A logic error was corrected in the wrapper class, vector and matrix memory is now properly free()'ed (Dirk in #22 fixing #20).
The introductory vignettes is now premade (Dirk in #23), and was updated lightly in its bibliography handling.
The unit tests are now run by tinytest (Dirk in #24).
The vignette was updated to accomodate pandoc 2* [CRAN request].
Update package manual page using references to
DESCRIPTION
file [CRAN request].
Windows builds were updated (Jeroen Ooms in #16).
Remove dynamic exception specifications which are deprecated with C++11 or later (Dirk in #17).
Accomodate Solaris by being more explicit about sqrt
.
We also check for gsl-config
at package load.
The vignette now uses the pinp package in two-column mode.
Minor other fixes to package and testing infrastructure.
In the fastLm
function, .Call
now uses the
correct PACKAGE=
argument
Added file init.c
with calls to R_registerRoutines()
and R_useDynamicSymbols()
; also use .registration=TRUE
in useDynLib
in NAMESPACE
The skeleton configuration for created packages was updated.
The unit test driver was updated and simplified, (by request of CRAN) no longer leaves files in '/tmp', and removes two unexported (and unused) test helper functions (PR #10)
Switched to run.sh
for Travis (PR #11)
Use canonical CRAN URLs in README.md
Restored 'boxed' display of code in vignette (PR #12)
The RcppGSL matrix and vector class now keep track of object
allocation and can therefore automatically free allocated object in
the destructor. Explicit x.free()
use is still supported.
The matrix and vector classes now support const reference semantics in the interfaces (thanks to PR #7 by Dan Dillon)
The matrix_view and vector_view classes are reorganized to better support const arguments (thanks to PR #8 and #9 by Dan Dillon)
Shorthand forms such as Rcpp::Matrix
have been added for
double
and int
vectors and matrices including views.
Examples such as fastLm
can now be written in a much
cleaner and shorter way as GSL objects can appear in the function
signature and without requiring explicit .free()
calls at the
end.
The included examples, as well as the introductory vignette, have been updated accordingly.
The colnorm
function in the included example package
was rewritten to use Rcpp Attributes, the example package was
updated and its version number increased to 0.0.3.
The unit tests also use the updated version of the example package.
The package, and the included example package, were updated
throughout to conform to the current R CMD check
standards.
The RcppGSL-intro vignette was updated throughout.
The Travis CI integration now uses r-cran-* packages which leads to faster tests.
Two new helper function to turn the default GSL error handler off (and to restore it) were added. The default handler is now turned off when the package is attached so that GSL will no longer abort an R session on error. Users will have to check the error code.
The RcppGSL-intro.Rnw
vignette was expanded with a
short section on the GSL error handler (thanks to Qiang Kou).
The src/Makevars.in
was pruned of GNU make features at
the request of the CRAN Maintainers.
configure.ac
and configure
were updated, and
shortened.
The RcppGSL-intro.Rnw
vignette was updated for its look
and feel.
A subtle bug (tickled only by clang on some OS versions) in vector and matrix view initialization was corrected by Kevin Ushey
Added new example based on B-splines example in GSL manual illustrating simple GSL use via Rcpp attributes
Vignette compilation has been reverted to using highlight since version 0.4.2 or greater can be used as a vignette engine (with R 3.0.* or later).
Vignette compilation is now being done by R CMD build
as R 3.0.0 supports different vignette engines, so the vignette
build process has been simplified. A convenience helper script has
also been added for command-line builds.
Unit tests now use sourceCpp()
instead of
cxxfunction()
from the inline package
The DESCRIPTION
file now uses Suggests: Rcpp
(instead of Depends: Rcpp
) to permit building of the
vignette
The package now takes advantage of the simplified build process available with Rcpp (>= 0.11.0)
Similar updates to the build process were made for the example package included with RcppGSL
summary() for fastLm() now displays more information
fastLmPure() now uses same argument order as R's lm.fit()
Added more unit tests for fastLm() and related functions
Export and document S3 methods in NAMESPACE and manual page as such
Vignettes have been moved to the vignettes/
directory
Main vignette renamed to RcppGSL-intro.pdf
to use a
filename different from the package reference manual
NEWS file converted to .Rd format
inline plugin support function no longer uses assignInNamespace but deploys a small package-global enviornment
Unit tests produce a summary vignette as for some of the other packages
The documentation Makefile now uses the $R_HOME environment variable
The documentation Makefile no longer calls clean in the all target
Initial CRAN release with basic functionality for vectors and matrices
A vignette provides an introduction and documentation about the package
An example package RcppGSLExample provides a complete stanza for creating your own package using RcppGSL (and the GSL and Rcpp)