Skip to content

Commit

Permalink
Release 0.6.1 (#589)
Browse files Browse the repository at this point in the history
* bump version

* update WORDLIST

* cleanup unused variable

* update .Rbuildignore

* revdepcheck run - No changes to commit

* update roxygen

---------

Co-authored-by: GitHub Actions <actions@github.com>
  • Loading branch information
JanMarvin and actions-user committed Apr 21, 2023
1 parent d2dc24e commit c03d258
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 8 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Expand Up @@ -21,3 +21,4 @@ cran-comments.md
^Meta$
^README\.Rmd$
^inst/img$
^tests/testthat/_snaps$
2 changes: 1 addition & 1 deletion DESCRIPTION
@@ -1,7 +1,7 @@
Type: Package
Package: openxlsx2
Title: Read, Write and Edit 'xlsx' Files
Version: 0.6.0.9000
Version: 0.6.1
Language: en-US
Authors@R: c(
person("Jordan Mark", "Barbone", email = "jmbarbone@gmail.com", role = "aut", comment = c(ORCID = "0000-0001-9788-3628")),
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
@@ -1,4 +1,4 @@
# openxlsx2 (in development)
# openxlsx2 (0.6.1)

## New features

Expand Down
5 changes: 4 additions & 1 deletion R/expect-wrapper.R
Expand Up @@ -20,7 +20,8 @@
#' @param ignore_wb for pseudo wbWorkbook wrappers such as wb_load() we have
#' to ignore wb
#' @returns Nothing, called for its side-effects
#' @name expect_wrapper
#' @rdname expect_wrapper
#' @keywords internal
#' @noRd
expect_wrapper <- function(
method,
Expand Down Expand Up @@ -183,6 +184,8 @@ expect_wrapper <- function(
#' @description
#' A trimmed down pseudo wrapper to check internal wrapped functions.
#' @rdname expect_wrapper
#' @keywords internal
#' @noRd
expect_pseudo_wrapper <- function(
method,
fun = paste0("wb_", method)
Expand Down
4 changes: 4 additions & 0 deletions inst/WORDLIST
Expand Up @@ -97,6 +97,7 @@ displayEmptyCellsAs
drawingHF
dxf
dxfs
eg
embeddings
evenFooter
evenHeader
Expand Down Expand Up @@ -172,6 +173,7 @@ numfmts
oddFooter
oddHeader
oleObjects
oneCellAnchor
openxlsx
openxml
ou
Expand Down Expand Up @@ -263,6 +265,7 @@ threadComments
threadedComments
topLeftCell
totalsRowCount
twoCellAnchor
unescaping
ungroup
unicode
Expand Down Expand Up @@ -291,6 +294,7 @@ xl
xls
xlsm
xlsx
xlsxFile
xy
yWindow
yy
Expand Down
6 changes: 3 additions & 3 deletions revdep/README.md
Expand Up @@ -10,19 +10,19 @@
|collate |C.UTF-8 |
|ctype |C.UTF-8 |
|tz |UTC |
|date |2023-04-02 |
|date |2023-04-21 |
|pandoc |2.19.2 @ /usr/bin/pandoc |

# Dependencies

|package |old |new |Δ |
|:---------|:------|:------|:--|
|openxlsx2 |0.5.1 |0.6 |* |
|openxlsx2 |0.6 |0.6.1 |* |
|magrittr |2.0.3 |2.0.3 | |
|R6 |2.5.1 |2.5.1 | |
|Rcpp |1.0.10 |1.0.10 | |
|stringi |1.7.12 |1.7.12 | |
|zip |2.2.2 |2.2.2 | |
|zip |2.3.0 |2.3.0 | |

# Revdeps

2 changes: 0 additions & 2 deletions src/load_workbook.cpp
Expand Up @@ -283,7 +283,6 @@ void loadvals(Rcpp::Environment sheet_data, XPtrXML doc) {

// val ------------------------------------------------------------------
if (nn > 0) {
auto val_itr = 0;
for (auto val: col.children()) {

val_name = val.name();
Expand Down Expand Up @@ -321,7 +320,6 @@ void loadvals(Rcpp::Environment sheet_data, XPtrXML doc) {
// <v>
if (val_name == v_str) single_xml_col.v = val.child_value();

++val_itr;
}

/* row is done */
Expand Down

0 comments on commit c03d258

Please sign in to comment.