From 7cab9e39d789f5ca9e26feee571e2c81b2522dae Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 16 Nov 2022 19:07:24 +0000 Subject: [PATCH] chore(release): 0.8.0 # [0.8.0](https://github.com/justindujardin/pathy/compare/v0.7.1...v0.8.0) (2022-11-16) ### Features * **azure:** support azure blob container storage ([#93](https://github.com/justindujardin/pathy/issues/93)) ([9624856](https://github.com/justindujardin/pathy/commit/962485661a67a87f7b0cdccb25ee135a0faa7614)) ### BREAKING CHANGES * **azure:** This removes an internal bit of code that allows for enumerating buckets in certain situations. The API was impossible to reach without going indirectly through the glob functionality, and it's unclear whether the code paths were ever reached outside of specific unit testing situations. If there's an explicit need for listing buckets, we can add a top-level API for it. --- CHANGELOG.md | 12 ++++++++++++ pathy/about.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 503a231..960f420 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [0.8.0](https://github.com/justindujardin/pathy/compare/v0.7.1...v0.8.0) (2022-11-16) + + +### Features + +* **azure:** support azure blob container storage ([#93](https://github.com/justindujardin/pathy/issues/93)) ([9624856](https://github.com/justindujardin/pathy/commit/962485661a67a87f7b0cdccb25ee135a0faa7614)) + + +### BREAKING CHANGES + +* **azure:** This removes an internal bit of code that allows for enumerating buckets in certain situations. The API was impossible to reach without going indirectly through the glob functionality, and it's unclear whether the code paths were ever reached outside of specific unit testing situations. If there's an explicit need for listing buckets, we can add a top-level API for it. + ## [0.7.1](https://github.com/justindujardin/pathy/compare/v0.7.0...v0.7.1) (2022-11-15) diff --git a/pathy/about.py b/pathy/about.py index 22f2ff6..be94c9d 100644 --- a/pathy/about.py +++ b/pathy/about.py @@ -1,5 +1,5 @@ __title__: str = "pathy" -__version__: str = "0.7.1" +__version__: str = "0.8.0" __summary__: str = "pathlib.Path subclasses for local and cloud bucket storage" __uri__: str = "https://github.com/justindujardin/pathy" __author__: str = "Justin DuJardin"