From 90eb026df9e4b169112208f3354defeea851e7c6 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sun, 22 Oct 2023 19:51:21 +0000 Subject: [PATCH] chore(release): 0.10.3 ## [0.10.3](https://github.com/justindujardin/pathy/compare/v0.10.2...v0.10.3) (2023-10-22) ### Bug Fixes * **is_dir:** return False if bucket does not exist ([#107](https://github.com/justindujardin/pathy/issues/107) by [@yaelmi3](https://github.com/yaelmi3)) ([4a4e69d](https://github.com/justindujardin/pathy/commit/4a4e69dcb45a79d4183613362fa8bb94b14290dc)) --- CHANGELOG.md | 7 +++++++ pathy/about.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54a4bb4..02c6c74 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.10.3](https://github.com/justindujardin/pathy/compare/v0.10.2...v0.10.3) (2023-10-22) + + +### Bug Fixes + +* **is_dir:** return False if bucket does not exist ([#107](https://github.com/justindujardin/pathy/issues/107) by [@yaelmi3](https://github.com/yaelmi3)) ([4a4e69d](https://github.com/justindujardin/pathy/commit/4a4e69dcb45a79d4183613362fa8bb94b14290dc)) + ## [0.10.2](https://github.com/justindujardin/pathy/compare/v0.10.1...v0.10.2) (2023-06-19) diff --git a/pathy/about.py b/pathy/about.py index 914d6b0..f0cc6cb 100644 --- a/pathy/about.py +++ b/pathy/about.py @@ -1,5 +1,5 @@ __title__: str = "pathy" -__version__: str = "0.10.2" +__version__: str = "0.10.3" __summary__: str = "pathlib.Path subclasses for local and cloud bucket storage" __uri__: str = "https://github.com/justindujardin/pathy" __author__: str = "Justin DuJardin"