diff --git a/CHANGES.rst b/CHANGES.rst index aa443c9..2d99b97 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,8 +3,8 @@ Change History ============== -0.10.1 (TBD) ------------- +0.10.1 (2022-09-02) +------------------- Bug fixes: @@ -13,6 +13,10 @@ Bug fixes: - `Issue #61`_: Dist failure for Fedora, CentOS, EPEL. - `Issue #62`_: Since version 0.10.0 pure wildcard does not work in some cases. +Improvements: + +- Restore support for legacy installations using `setup.py`. See `Issue #61`_. + .. _`Issue #60`: https://github.com/cpburnz/python-pathspec/pull/60 .. _`Issue #61`: https://github.com/cpburnz/python-pathspec/issues/61 diff --git a/README-dist.rst b/README-dist.rst index 4514466..8c13dc8 100644 --- a/README-dist.rst +++ b/README-dist.rst @@ -172,6 +172,26 @@ Change History ============== +0.10.1 (2022-09-02) +------------------- + +Bug fixes: + +- Fix documentation on `pathspec.pattern.RegexPattern.match_file()`. +- `Issue #60`_: Remove redundant wheel dep from pyproject.toml. +- `Issue #61`_: Dist failure for Fedora, CentOS, EPEL. +- `Issue #62`_: Since version 0.10.0 pure wildcard does not work in some cases. + +Improvements: + +- Restore support for legacy installations using `setup.py`. See `Issue #61`_. + + +.. _`Issue #60`: https://github.com/cpburnz/python-pathspec/pull/60 +.. _`Issue #61`: https://github.com/cpburnz/python-pathspec/issues/61 +.. _`Issue #62`: https://github.com/cpburnz/python-pathspec/issues/62 + + 0.10.0 (2022-08-30) ------------------- diff --git a/pathspec/_meta.py b/pathspec/_meta.py index 799b316..9f39532 100644 --- a/pathspec/_meta.py +++ b/pathspec/_meta.py @@ -48,4 +48,4 @@ "bzakdd ", ] __license__ = "MPL 2.0" -__version__ = "0.10.1.dev1" +__version__ = "0.10.1"