Skip to content

Commit

Permalink
chore(release): 0.5.0
Browse files Browse the repository at this point in the history
# [0.5.0](v0.4.0...v0.5.0) (2021-04-22)

### Bug Fixes

* **auto-import:** move public exports into __init__.py ([fd09021](fd09021))
* **cli:** ls returns code 1 from invalid sources ([b2ff829](b2ff829))
* **samefile:** compare self.key to other.key not self.key ([688628e](688628e))

### 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`.
  • Loading branch information
semantic-release-bot committed Apr 22, 2021
1 parent ecbc5fa commit 8ad43b5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
2 changes: 1 addition & 1 deletion pathy/about.py
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 8ad43b5

Please sign in to comment.