diff --git a/CHANGELOG.md b/CHANGELOG.md index 0fedfde..2f3596f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# [0.5.0](https://github.com/justindujardin/pathy/compare/v0.4.0...v0.5.0) (2021-04-22) + + +### Bug Fixes + +* **auto-import:** move public exports into __init__.py ([fd09021](https://github.com/justindujardin/pathy/commit/fd090215efc392e76d167e9c0203520c251578da)) +* **cli:** ls returns code 1 from invalid sources ([b2ff829](https://github.com/justindujardin/pathy/commit/b2ff829f35db6b5af25c9bc553f1e1b76be7e39c)) +* **samefile:** compare self.key to other.key not self.key ([688628e](https://github.com/justindujardin/pathy/commit/688628ecbf430284fbcb83142d7751e0b54475d2)) + + +### BREAKING CHANGES + +* **auto-import:** Previously you could import symbols directly from their files in the module, e.g. `from pathy.base import Pathy`. Now you must import them from the base package, e.g. `from pathy import Pathy`. + # [0.4.0](https://github.com/justindujardin/pathy/compare/v0.3.6...v0.4.0) (2021-02-15) diff --git a/pathy/about.py b/pathy/about.py index a7dfa0e..3228ad5 100644 --- a/pathy/about.py +++ b/pathy/about.py @@ -1,5 +1,5 @@ __title__: str = "pathy" -__version__: str = "0.4.0" +__version__: str = "0.5.0" __summary__: str = "pathlib.Path subclasses for local and cloud bucket storage" __uri__: str = "https://github.com/justindujardin/pathy" __author__: str = "Justin DuJardin"