pathops: Changelog¶
1.3.0.post0 - 16 June 2026¶
Update project URLs.
1.3.0 - 2 June 2026¶
PathProtocol.glob and LocalPath.glob now accept a str | os.PathLike[str] pattern, matching ContainerPath.glob and pathlib.Path.glob on Python 3.13+.
1.2.1 - 6 February 2026¶
PathProtocol iterdir and glob now only promise to return an Iterator rather than a Generator.
This is technically a breaking change for users that expected to be able to use the Generator send method with these values.
However, this is being treated as a fix rather than a breaking change because:
Sending values to these generators was never meaningful – the values were ignored, both by
LocalPathand byContainerPath.LocalPathon Python 3.13+ already no longer returns aGenerator, becausepathlib.Pathinstead returns amapIterator.This is a type-annotation-only change, and only for
PathProtocol–ContainerPathstill returnsGeneratorobjects and is typed as such, whileLocalPathreturns whateverpathlib.Pathdoes.
1.2.0.post0 - 14 October 2025¶
Update project URLs.
1.2.0 - 8 September 2025¶
Drop Python 3.8 and 3.9 support.
1.1.1 - 3 Sep 2025¶
Add missing_ok argument to unlink method.
1.0.0.post0 - 8 Aug 2025¶
Small docstring update.
1.0.0 - 25 April 2025¶
Stable release.
0.0.0 - 24 April 2025¶
Beta release.