diff --git a/CHANGES.rst b/CHANGES.rst index 9e2fc6b..103344a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,8 +3,8 @@ Change History ============== -0.11.0 (TBD) ------------- +0.11.0 (2023-01-24) +------------------- Major changes: diff --git a/README-dist.rst b/README-dist.rst index bf513f8..b8f090c 100644 --- a/README-dist.rst +++ b/README-dist.rst @@ -170,6 +170,23 @@ Change History ============== +0.11.0 (2023-01-24) +------------------- + +Major changes: + +- Changed build backend to `flit_core.buildapi`_ from `setuptools.build_meta`_. Building with `setuptools` through `setup.py` is still supported for distributions that need it. See `Issue #72`_. + +Improvements: + +- `Issue #72`_/`Pull #73`_: Please consider switching the build-system to flit_core to ease setuptools bootstrap. + + +.. _`flit_core.buildapi`: https://flit.pypa.io/en/latest/index.html +.. _`Issue #72`: https://github.com/cpburnz/python-pathspec/issues/72 +.. _`Pull #73`: https://github.com/cpburnz/python-pathspec/pull/73 + + 0.10.3 (2022-12-09) ------------------- diff --git a/pathspec/_meta.py b/pathspec/_meta.py index 8494acc..24a84c3 100644 --- a/pathspec/_meta.py +++ b/pathspec/_meta.py @@ -3,7 +3,7 @@ """ __author__ = "Caleb P. Burns" -__copyright__ = "Copyright © 2013-2022 Caleb P. Burns" +__copyright__ = "Copyright © 2013-2023 Caleb P. Burns" __credits__ = [ "dahlia ", "highb ", @@ -51,4 +51,4 @@ "yschroeder ", ] __license__ = "MPL 2.0" -__version__ = "0.11.0.dev1" +__version__ = "0.11.0"