From e0b67d84fffb1db5f611cb873a476bb6846618b7 Mon Sep 17 00:00:00 2001 From: Andreas Poehlmann Date: Sun, 22 Feb 2026 15:15:12 +0100 Subject: [PATCH] cut release 0.3.10 --- CHANGELOG.md | 12 +++++++++++- README.md | 2 +- docs/install.md | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56aaa003..d11c6476 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/README.md b/README.md index 67642c9e..f53b25a8 100644 --- a/README.md +++ b/README.md @@ -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]", ] ``` diff --git a/docs/install.md b/docs/install.md index 6857279b..d16b4157 100644 --- a/docs/install.md +++ b/docs/install.md @@ -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 ] ```