Path to this page:
Subject: CVS commit: pkgsrc/devel/R-xfun
From: Makoto Fujiwara
Date: 2020-09-20 03:25:07
Message id: 20200920012507.2B0DEFB28@cvs.NetBSD.org
Log Message:
(devel/R-xfun) Updated 0.8 to 0.17
# CHANGES IN xfun VERSION 0.17
## NEW FEATURES
- Supports `xfun::pkg_attach(packages, install = "pak")`, i.e., use \
`pak::pkg_install()` to install a package when it is not installed (thanks, \
@GitHunter0, #32).
- Added a new function `xfun::split_source()` to split lines of R source code \
into minimal complete expressions.
# CHANGES IN xfun VERSION 0.16
- Added a new function `base64_decode()` to decode data from the base64 encoding \
(thanks, @wush978, #31).
# CHANGES IN xfun VERSION 0.15
## NEW FEATURES
- Added a new function `tree()`, which is based on `str()` in base R, but \
changes the output of `str()` into a tree diagram to make it easier to \
understand nested data structures.
- Added a new function `base64_encode()` to encode data into the base64 encoding \
(thanks, @wush978, #27).
- Added a new function `base64_uri()` to generate the Data URI (or Data URL) for \
a file.
## BUG FIXES
- Fenced code blocks commented out in `<!-- -->` are not longer recognized \
as code blocks but prose (thanks, @jarauh, #25).
# CHANGES IN xfun VERSION 0.14
## NEW FEATURES
- The `cache_rds()` function can invalidate the cache automatically when the \
code passed to its `expr` argument has changed. Two new arguments, `hash` and \
`clean` were added to this function to make it more useful and powerful. See the \
help page `?xfun::cache_rds()` for more information.
# CHANGES IN xfun VERSION 0.13
## NEW FEATURES
- Added a new function `cache_rds()` to cache an R expression to a `*.rds` file.
- Added a new function `Rscript_call()` to call a function (with arguments) in a \
new R session via the command `Rscript`.
- The `recheck` argument of `rev_check()` can take a vector of package names, \
and only these packages will be checked. See `?xfun::rev_check` for more \
details.
# CHANGES IN xfun VERSION 0.12
## NEW FEATURES
- Added a new function `split_lines()`.
# CHANGES IN xfun VERSION 0.11
## BUG FIXES
- `read_utf8()` will read the file with `options(encoding = 'native.enc')` and \
ignore user's setting such as `options(encoding = 'UTF-8')` (#21).
# CHANGES IN xfun VERSION 0.10
## NEW FEATURES
- Added the function `as_strict_list()` to convert an existing object to a \
strict list without wrapping it in another list if the object already is of type \
list (in contrast to how `strict_list()` behaves) (thanks, @salim-b, #20).
# CHANGES IN xfun VERSION 0.9
## NEW FEATURES
- Added a function `rename_seq()` to rename files to add an incremental numeric \
prefix to the filenames, e.g., rename `a.txt`, `b.txt`, `c.txt` to `1-a.txt`, \
`2-b.txt`, `3-c.txt`.
Files: