diff --git a/HISTORY.md b/HISTORY.md index 29d2a272..7b0a6eac 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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) diff --git a/cloudpathlib/gs/gsclient.py b/cloudpathlib/gs/gsclient.py index 717cf43b..3524915f 100644 --- a/cloudpathlib/gs/gsclient.py +++ b/cloudpathlib/gs/gsclient.py @@ -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 (