File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88## [ Unreleased]
99...
1010
11+ ## [ 0.2.5] - 2024-09-08
12+ ### Fixed
13+ - upath.implementations.cloud: move bucket check to subclasses (#277 )
14+ - upath: enable local tests on windows and fix is_absolute (#278 )
15+ - upath: updated flavour sources (#273 )
16+
17+ ### Added
18+ - upath: adds support for python-3.13 (#275 )
19+
1120## [ 0.2.4] - 2024-09-07
1221### Fixed
1322- upath: fix UPath.rename type signature (#258 )
@@ -160,7 +169,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
160169### Added
161170- started a changelog to keep track of significant changes
162171
163- [ Unreleased ] : https://github.com/fsspec/universal_pathlib/compare/v0.2.4...HEAD
172+ [ Unreleased ] : https://github.com/fsspec/universal_pathlib/compare/v0.2.5...HEAD
173+ [ 0.2.5 ] : https://github.com/fsspec/universal_pathlib/compare/v0.2.4...v0.2.5
164174[ 0.2.4 ] : https://github.com/fsspec/universal_pathlib/compare/v0.2.3...v0.2.4
165175[ 0.2.3 ] : https://github.com/fsspec/universal_pathlib/compare/v0.2.2...v0.2.3
166176[ 0.2.2 ] : https://github.com/fsspec/universal_pathlib/compare/v0.2.1...v0.2.2
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ project as a dependency if you want to use it with `s3` and `http` filesystems:
4646name = " myproject"
4747requires-python = " >=3.8"
4848dependencies = [
49- " universal_pathlib>=0.2.0 " ,
49+ " universal_pathlib>=0.2.5 " ,
5050 " fsspec[s3,http]" ,
5151]
5252```
@@ -83,7 +83,7 @@ For more examples, see the [example notebook here][example-notebook].
8383
8484### Currently supported filesystems (and protocols)
8585
86- - ` file: ` Local filesystem
86+ - ` file: ` and ` local: ` Local filesystem
8787- ` memory: ` Ephemeral filesystem in RAM
8888- ` az: ` , ` adl: ` , ` abfs: ` and ` abfss: ` Azure Storage _ (requires ` adlfs ` )_
8989- ` data: ` RFC 2397 style data URLs _ (requires ` fsspec>=2023.12.2 ` )_
@@ -92,6 +92,8 @@ For more examples, see the [example notebook here][example-notebook].
9292- ` hdfs: ` Hadoop distributed filesystem
9393- ` gs: ` and ` gcs: ` Google Cloud Storage _ (requires ` gcsfs ` )_
9494- ` s3: ` and ` s3a: ` AWS S3 _ (requires ` s3fs ` to be installed)_
95+ - ` sftp: ` and ` ssh: ` SFTP and SSH filesystems _ (requires ` paramiko ` )_
96+ - ` smb: ` SMB filesystems _ (requires ` smbprotocol ` )_
9597- ` webdav ` , ` webdav+http: ` and ` webdav+https: ` WebDAV-based filesystem on top of
9698 HTTP(S) _ (requires ` webdav4[fsspec] ` )_
9799
You can’t perform that action at this time.
0 commit comments