Skip to content

Commit

Permalink
chore(release): 0.10.0
Browse files Browse the repository at this point in the history
# [0.10.0](v0.9.0...v0.10.0) (2022-11-23)

### Bug Fixes

* **stat:** return BlobStat for all pathy paths ([#96](#96)) ([f092605](f092605))

### BREAKING CHANGES

* **stat:** Previously when using Pathy.fluid paths that point to local file system paths, Pathy would return an `os.stat_result` rather than a `BlobStat`. This made it difficulty to treat mixed paths consistently.

Now Pathy returns a BlobStat structure for local and remote paths.

If you need to use `os.stat_result` you can still call `os.stat(my_path)` to access it.
  • Loading branch information
semantic-release-bot committed Nov 23, 2022
1 parent f092605 commit 883291d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# [0.10.0](https://github.com/justindujardin/pathy/compare/v0.9.0...v0.10.0) (2022-11-23)


### Bug Fixes

* **stat:** return BlobStat for all pathy paths ([#96](https://github.com/justindujardin/pathy/issues/96)) ([f092605](https://github.com/justindujardin/pathy/commit/f092605c015e57e66ce88b98502da917c08ed4f3))


### BREAKING CHANGES

* **stat:** Previously when using Pathy.fluid paths that point to local file system paths, Pathy would return an `os.stat_result` rather than a `BlobStat`. This made it difficulty to treat mixed paths consistently.

Now Pathy returns a BlobStat structure for local and remote paths.

If you need to use `os.stat_result` you can still call `os.stat(my_path)` to access it.

# [0.9.0](https://github.com/justindujardin/pathy/compare/v0.8.1...v0.9.0) (2022-11-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.9.0"
__version__: str = "0.10.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 883291d

Please sign in to comment.