Skip to content

Commit

Permalink
chore(release): 0.11.0
Browse files Browse the repository at this point in the history
# [0.11.0](v0.10.3...v0.11.0) (2024-01-11)

### Features

* Drop Python 3.7 and add Python 3.12 ([#112](#112)) ([97ebaa1](97ebaa1))

### BREAKING CHANGES

* This drops support for python 3.7 which has reached its end of life

* feat(Pathy): integrate pathlib_abc
 - replace base pathlib.Path class with abstract base class from a future version of python.
* Pathy.key returns a str rather than a Pathy instance

* feat(ci): add python 3.12
* Pathy no longer inherits from pahtlib.Path

This means Pathy does not support directly accepting and working with file system paths. You must use Pathy.fluid or pathlib.Path to construct your file system paths. Pathy will continue to interoperate with them as needed to accommodate its public API.
  • Loading branch information
semantic-release-bot committed Jan 11, 2024
1 parent 97ebaa1 commit 2229167
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
# [0.11.0](https://github.com/justindujardin/pathy/compare/v0.10.3...v0.11.0) (2024-01-11)


### Features

* Drop Python 3.7 and add Python 3.12 ([#112](https://github.com/justindujardin/pathy/issues/112)) ([97ebaa1](https://github.com/justindujardin/pathy/commit/97ebaa11ec62ce551b96a3c2431f8a29777ed30d))


### BREAKING CHANGES

* This drops support for python 3.7 which has reached its end of life

* feat(Pathy): integrate pathlib_abc
- replace base pathlib.Path class with abstract base class from a future version of python.
* Pathy.key returns a str rather than a Pathy instance

* feat(ci): add python 3.12
* Pathy no longer inherits from pahtlib.Path

This means Pathy does not support directly accepting and working with file system paths. You must use Pathy.fluid or pathlib.Path to construct your file system paths. Pathy will continue to interoperate with them as needed to accommodate its public API.

## [0.10.3](https://github.com/justindujardin/pathy/compare/v0.10.2...v0.10.3) (2023-10-22)


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.10.3"
__version__: str = "0.11.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 2229167

Please sign in to comment.