From 5cd37c2941b3ff91bb7237434a9f33ddc52050b4 Mon Sep 17 00:00:00 2001 From: Andreas Poehlmann Date: Fri, 23 Aug 2024 20:23:55 +0200 Subject: [PATCH 1/2] cut release v0.2.3 --- CHANGELOG.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a438469e..f707444d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ... +## [0.2.3] - 2024-08-23 +### Added +- upath: add st_birthtime as standard field (#254) +- upath: added SMBPath and tests (#219) +- ci: added typesafety checks (#212) + +### Fixed +- upath: fix UPath.rename for absolute paths (#225) +- upath._flavour: fix path parsing due to change in urllib.parse.SplitResult behavior (#236) +- upath: fixed typing regressions (#212) +- upath: update flavour sources (#224, #237, #252) +- docs: fix link to filesystem spec optional dependencies (#232) + ## [0.2.2] - 2024-03-04 ### Fixed - upath: fixed comparison with pathlib.Path on py<3.12 (#203) @@ -126,7 +139,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.2.2...HEAD +[Unreleased]: https://github.com/fsspec/universal_pathlib/compare/v0.2.3...HEAD +[0.2.3]: https://github.com/fsspec/universal_pathlib/compare/v0.2.2...v0.2.3 [0.2.2]: https://github.com/fsspec/universal_pathlib/compare/v0.2.1...v0.2.2 [0.2.1]: https://github.com/fsspec/universal_pathlib/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/fsspec/universal_pathlib/compare/v0.1.4...v0.2.0 From 0813f2558a536578350d4a7aca139bb165935790 Mon Sep 17 00:00:00 2001 From: Andreas Poehlmann Date: Fri, 23 Aug 2024 21:23:25 +0200 Subject: [PATCH 2/2] update changelog with is_absolute fix --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f707444d..020fe142 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - ci: added typesafety checks (#212) ### Fixed +- upath: fix UPath.is_absolute on <3.12 (#256) - upath: fix UPath.rename for absolute paths (#225) - upath._flavour: fix path parsing due to change in urllib.parse.SplitResult behavior (#236) - upath: fixed typing regressions (#212)