-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eecf752
commit 7e2d6ee
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Version History | ||
=============== | ||
|
||
Unreleased | ||
---------- | ||
|
||
- Add ``PathModuleBase`` ABC to support path syntax customization. | ||
- Add CI. Thank you Edgar Ramírez Mondragón! | ||
- Return paths with trailing slashes if a glob pattern ends with a slash. | ||
- Return both files and directory paths if a glob pattern ends with ``**``, | ||
rather than directories only. | ||
- Improve ``PathBase.resolve()`` performance by avoiding some path object | ||
allocations. | ||
- Remove ``PurePathBase.is_reserved()``. | ||
- Remove automatic path normalization. Specifically, the ABCs no longer | ||
convert alternate separators nor remove either dot or empty segments. | ||
- Remove caching of the path drive, root, tail, and string. | ||
- Remove deprecation warnings and audit events. | ||
|
||
|
||
v0.1.1 | ||
------ | ||
|
||
- Improve globbing performance by avoiding re-initialising path objects. | ||
- Add docs. | ||
|
||
|
||
v0.1.0 | ||
------ | ||
|
||
- Initial release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
.. include:: ../CHANGES.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ Contents | |
.. toctree:: | ||
examples | ||
api | ||
changes |