Skip to content

Commit 63b6f1c

Browse files
authored
cut release 0.3.7 (#497)
1 parent 69be7e2 commit 63b6f1c

File tree

3 files changed

+25
-4
lines changed

3 files changed

+25
-4
lines changed

CHANGELOG.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,28 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
10+
## [0.3.7] - 2025-12-03
11+
912
### Added
10-
- upath.implementations.ftp: added FTPPath support
13+
- upath.implementations.ftp: added FTPPath support (#485)
14+
- tests: added comprehensive warning checks in test suite (#487)
15+
- tests: added xfail handling for network connectivity issues (#492)
16+
17+
### Fixed
18+
- upath: fixed trailing slash behavior for cloud paths (#488)
19+
- upath.core: fixed rename implementation for relative paths (#493)
20+
- upath.implementations.memory: fixed MemoryPath root (#495)
21+
- upath.implementations.ftp: added support for FTP modification time info format (#485)
22+
- upath.implementations.local: fixed rename return type on Python 3.14+ (#493)
23+
- upath.extensions: fixed .cwd() behavior for ProxyUPath (#493)
24+
- upath.extensions: fixed typing of .cwd() method (#493)
25+
- docs: fixed typing example in README (#484)
26+
- pypi: fixed maintainer display on PyPI (#486)
27+
28+
### Changed
29+
- upath.core: deprecated keyword arguments for UPath.rename() (#496)
30+
- ci: updated development dependencies (dvc, huggingface-hub)
1131

1232
## [0.3.6] - 2025-11-13
1333
### Added
@@ -293,7 +313,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
293313
### Added
294314
- started a changelog to keep track of significant changes
295315

296-
[Unreleased]: https://github.com/fsspec/universal_pathlib/compare/v0.3.6...HEAD
316+
[Unreleased]: https://github.com/fsspec/universal_pathlib/compare/v0.3.7...HEAD
317+
[0.3.7]: https://github.com/fsspec/universal_pathlib/compare/v0.3.6...v0.3.7
297318
[0.3.6]: https://github.com/fsspec/universal_pathlib/compare/v0.3.5...v0.3.6
298319
[0.3.5]: https://github.com/fsspec/universal_pathlib/compare/v0.3.4...v0.3.5
299320
[0.3.4]: https://github.com/fsspec/universal_pathlib/compare/v0.3.3...v0.3.4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ project as a dependency if you want to use it with `s3` and `http` filesystems:
5050
name = "myproject"
5151
requires-python = ">=3.9"
5252
dependencies = [
53-
"universal_pathlib>=0.3.6",
53+
"universal_pathlib>=0.3.7",
5454
"fsspec[s3,http]",
5555
]
5656
```

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ When adding `universal-pathlib` to your project, specify the filesystem extras y
5757
name = "myproject"
5858
requires-python = ">=3.9"
5959
dependencies = [
60-
"universal_pathlib>=0.3.6",
60+
"universal_pathlib>=0.3.7",
6161
"fsspec[s3,http]", # Add the filesystems you need
6262
]
6363
```

0 commit comments

Comments
 (0)