Changelog
Source:NEWS.md
hoardr 0.5.4
CRAN release: 2024-01-23
BUG FIXES
-
testthat::test_check()
failed when full path for cache dir wastempdir()
. Replacedtempdir()
with a full path that works (#23).
hoardr 0.5.2
CRAN release: 2018-12-01
BUG FIXES
- Important fix:
HoardClient
, called byhoardr()
function, was storing the cache path in an environment inside the R6 class. If multiple instances ofHoardClient
exist in the same R session, the cache path for any one then affects all others. Fixed by storing as a private variable int he R6 class instead of in an environment (#14).
hoardr 0.5.0
CRAN release: 2018-10-13
NEW FEATURES
- Gains new method on the
HoardClient
object to check if one or more files exist, returning a data.frame (#10). -
cache_path_set()
method onHoardClient
gains new parameterfull_path
to make the base cache path directly with a full path rather than using the three other parameters (path
,type
, andprefix
) (#12).