Skip to content

roclang release v0.1.1

Compare
Choose a tag to compare
@zhuxr11 zhuxr11 released this 05 Aug 09:36
· 42 commits to master since this release

roclang 0.1.1

Enhancements:

  • extract_roc_text() now defaults its capitalize argument to NA, leaving the function to keep the first letter of the return as is. Previously the default was TRUE, which would capitalize the first letter anyways if missing.

  • Add package documentation.

Bug fixes:

  • Fix a few typos in README.Rmd and function documentations.

  • Add single quotes to non-standard words.

  • Update release status on CRAN and installation methods.

  • Handle parsing of fun in extract_roc_text() in a safer way using get() with mode = "function"; previously it used rlang::parse_expr() with eval(), which is risky for possible code injection.