Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.9] - 2026-01-31

### Fixed
- upath.core: raise TypeError if using subclass directly with wrong protocol (#541)
- upath.core: (backcompat) TypeError on protocol incompatibility (#540)
- upath.extensions: Pydantic serialize ProxyUPath (#538)

### Changed
- upath: updated flavours (#512)

## [0.3.8] - 2026-01-11

### Added
Expand Down Expand Up @@ -344,7 +354,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- started a changelog to keep track of significant changes

[Unreleased]: https://github.com/fsspec/universal_pathlib/compare/v0.3.8...HEAD
[Unreleased]: https://github.com/fsspec/universal_pathlib/compare/v0.3.9...HEAD
[0.3.9]: https://github.com/fsspec/universal_pathlib/compare/v0.3.8...v0.3.9
[0.3.8]: https://github.com/fsspec/universal_pathlib/compare/v0.3.7...v0.3.8
[0.3.7]: https://github.com/fsspec/universal_pathlib/compare/v0.3.6...v0.3.7
[0.3.6]: https://github.com/fsspec/universal_pathlib/compare/v0.3.5...v0.3.6
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ project as a dependency if you want to use it with `s3` and `http` filesystems:
name = "myproject"
requires-python = ">=3.9"
dependencies = [
"universal_pathlib>=0.3.7",
"universal_pathlib>=0.3.9",
"fsspec[s3,http]",
]
```
Expand Down
2 changes: 1 addition & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ When adding `universal-pathlib` to your project, specify the filesystem extras y
name = "myproject"
requires-python = ">=3.9"
dependencies = [
"universal_pathlib>=0.3.7",
"universal_pathlib>=0.3.9",
"fsspec[s3,http]", # Add the filesystems you need
]
```
Expand Down