From 5e76ca1c94eb14c362d26bbb2a63f34e0aa3e28d Mon Sep 17 00:00:00 2001 From: Jan Marvin Garbuszus Date: Mon, 10 Jul 2023 21:40:35 +0200 Subject: [PATCH] update NEWS --- NEWS.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/NEWS.md b/NEWS.md index eaf520be2..92b9ce925 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,9 @@ # openxlsx2 (development version) +## New features + +* Function arguments are now defaulting to `snake_case`. For the time being, both arguments are accepted and `camelCase` will be switched to `snake_case` under the hood. Documentation like vignettes and examples are currently still displaying `camelCase` and maybe some `camelCase` function slipped through. [678](https://github.com/JanMarvin/openxlsx2/pull/678) + ## Breaking changes * Order of arguments in `wb_add_named_region()` changed, because previously overlooked `dims` argument was added. @@ -9,10 +13,11 @@ * remove deprecated arguments * `xy` argument + * arguments `col`, `row`, `cols`, `rows`. `start_col`, `start_row` and `gridExpand` were deprecated in favor of `dims`. Numeric vectors can be converted to `dims` using `rowcol_to_dims()` * deprecating function * `convertToExcelDate()` for `convert_to_excel_date()` - + ***************************************************************************