From fa3a4f29c1b74f6ef6fd825b36e2705f1d07d66e Mon Sep 17 00:00:00 2001 From: Peter Bull Date: Wed, 15 Feb 2023 17:20:57 -0800 Subject: [PATCH] Update changelog for release + comment typo --- HISTORY.md | 4 +++- cloudpathlib/gs/gsclient.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) 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 (