Releases: rossellhayes/fauxnaif
Releases · rossellhayes/fauxnaif
Version 0.7.1
- Update Roxygen version to avoid CRAN NOTE.
Version 0.7.0
na_if_in()
andna_if_not()
now supportvctrs
classes likehaven_labelled
.- Function arguments must now return logical vectors of the same length as
x
. fauxnaif
no longer throws warnings. Situations that previously produced a warning now produce an error:- If no arguments are passed to
...
. - If any arguments passed to
...
are not coercible to a vector or a function.
- If no arguments are passed to
- Removed deprecated
fauxnaif::na_if()
and scopedna_if_*()
functions. - Added
pkgdown
URL toDESCRIPTION
. - Added
inst/CITATION
.
Version 0.6.1
- Replace argument
input
withx
. - Advance
fauxnaif::na_if()
and scopedna_if_*()
functions fromdeprecate_soft()
todeprecate_warn()
. - Only warn
fauxnaif::na_if()
is deprecated if arguments could not be handled bydplyr::na_if()
. - Added
pkgdown
site. - Remove
inst/CITATION
.
Version 0.6.0
- No longer produce a warning when no replacements are made.
- Deprecate scoped na_if() functions and suggest replacing them with
dplyr::across()
. - Deprecate
fauxnaif::na_if()
and suggest replacing it withna_if_in()
.
Version 0.5.6
- Initial CRAN release.
- Scoped na_if_*() functions now call an internal function fauxnaif:::scoped_na_if() to reduce repeated code.