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
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.3.10] - 2026-02-22

### Fixed
- upath.extensions: fix ProxyUPath as copy or move target on 3.14+ (#547)

### Changed
- upath: updated flavours (#545)
- ci: updated development dependencies (#550)

## [0.3.9] - 2026-01-31

### Fixed
Expand Down Expand Up @@ -354,7 +363,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.9...HEAD
[Unreleased]: https://github.com/fsspec/universal_pathlib/compare/v0.3.10...HEAD
[0.3.10]: https://github.com/fsspec/universal_pathlib/compare/v0.3.9...v0.3.10
[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
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.9",
"universal_pathlib>=0.3.10",
"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.9",
"universal_pathlib>=0.3.10",
"fsspec[s3,http]", # Add the filesystems you need
]
```
Expand Down