Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DyfanJones authored Oct 23, 2023
2 parents 43da4e4 + 1831234 commit 088dd4e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 3 additions & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: s3fs
Type: Package
Title: 'Amazon Web Service S3' File System
Version: 0.1.3
Version: 0.1.4
Authors@R: c(person("Dyfan", "Jones", email="dyfan.r.jones@gmail.com", role= c("aut", "cre")))
Description: Access 'Amazon Web Service Simple Storage Service' ('S3') <https://aws.amazon.com/s3/>
as if it were a file system. Interface based on the R package 'fs'.
Expand All @@ -18,6 +18,8 @@ Collate:
'file_system.R'
'file_system_async.R'
'reexport_fs.R'
Depends:
R (>= 3.6.0)
Imports:
curl,
R6,
Expand Down
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# s3fs 0.1.4

* Fix ensure path is returned for already existing directories (#28)
* set R version >= 3.6.0 (#29)

# s3fs 0.1.3

* Fix hard coded max batch size
Expand Down
1 change: 1 addition & 0 deletions R/s3filesystem_class.R
Original file line number Diff line number Diff line change
Expand Up @@ -1400,6 +1400,7 @@ S3FileSystem = R6Class("S3FileSystem",
return(private$.s3_build_uri(path))
}
LOGGER$info("Directory already exists in AWS S3")
return(path)
},

#' @description Delete contents and directory in AWS S3
Expand Down

0 comments on commit 088dd4e

Please sign in to comment.