Skip to content

Commit

Permalink
Update changelog for release + comment typo
Browse files Browse the repository at this point in the history
  • Loading branch information
pjbull committed Feb 16, 2023
1 parent 874044a commit fa3a4f2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# cloudpathlib Changelog

## v0.13.0 (UNRLEASED)
## v0.13.0 (2023-02-15)

- Implement `file_cache_mode`s to give users finer-grained control over when and how the cache is cleared. ([Issue #10](https://github.com/drivendataorg/cloudpathlib/issues/10), [PR #314](https://github.com/drivendataorg/cloudpathlib/pull/314))
- Speed up listing directories for Google Cloud Storage. ([PR #318](https://github.com/drivendataorg/cloudpathlib/pull/318))
- Add compatibility for Python 3.11 ([PR #317](https://github.com/drivendataorg/cloudpathlib/pull/317))

## v0.12.1 (2023-01-04)

Expand Down
2 changes: 1 addition & 1 deletion cloudpathlib/gs/gsclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ def _list_dir(self, cloud_path: GSPath, recursive=False) -> Iterable[Tuple[GSPat
else:
iterator = bucket.list_blobs(delimiter="/", prefix=prefix)

# files must be iterated first for `.prefixes` to be populated exist:
# files must be iterated first for `.prefixes` to be populated:
# see: https://github.com/googleapis/python-storage/issues/863
for file in iterator:
yield (
Expand Down

0 comments on commit fa3a4f2

Please sign in to comment.