Skip to content

Commit

Permalink
bump version, add to NEWS
Browse files Browse the repository at this point in the history
  • Loading branch information
ijlyttle committed Jan 1, 2024
1 parent 8977068 commit 03169f2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 3 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: boxr
Type: Package
Title: Interface for the 'Box.com API'
Version: 0.3.6.9005
Version: 0.3.6.9006
Authors@R: c(
person("Brendan", "Rocks", email = "[email protected]",
role = c("aut")),
Expand Down Expand Up @@ -52,7 +52,8 @@ Imports:
tibble,
lifecycle,
jsonlite,
jose
jose,
withr
Suggests:
clipr (>= 0.3.0),
conflicted,
Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Internal

* refactor to use withr functions to handle temp files. (#183)

* update documentation to reflect updates to rio package. (#242, @chainsawriot)

* update maintainer's email address. (#248)
Expand Down
1 change: 1 addition & 0 deletions R/boxr_save_load.R
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ box_save <- function(..., dir_id = box_getwd(), file_name = ".RData",
description = NULL) {

# TODO: fs
#temp_file <- withr::local_tempfile(pattern = file_name)
temp_file <- normalizePath(file.path(tempdir(), file_name), mustWork = FALSE)

# clean up after ourselves
Expand Down

0 comments on commit 03169f2

Please sign in to comment.