From 7ca27e2300ced6364a3816820eb2532c89c7d01c Mon Sep 17 00:00:00 2001 From: cpburnz Date: Sat, 17 Jul 2021 20:23:48 -0400 Subject: [PATCH] Release v0.9.0 --- CHANGES.rst | 7 +++++-- pathspec/_meta.py | 9 ++++++++- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d517fe2..39301d8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,16 +2,19 @@ Change History ============== -0.9.0 (TDB) ------------ +0.9.0 (2021-07-17) +------------------ +- `Issue #44`_/`Issue #50`_: Raise `GitWildMatchPatternError` for invalid git patterns. - `Issue #45`_: Fix for duplicate leading double-asterisk, and edge cases. - `Issue #46`_: Fix matching absolute paths. - API change: `util.normalize_files()` now returns a `Dict[str, List[pathlike]]` instead of a `Dict[str, pathlike]`. - Added type hinting. +.. _`Issue #44`: https://github.com/cpburnz/python-path-specification/issues/44 .. _`Issue #45`: https://github.com/cpburnz/python-path-specification/pull/45 .. _`Issue #46`: https://github.com/cpburnz/python-path-specification/issues/46 +.. _`Issue #50`: https://github.com/cpburnz/python-path-specification/pull/50 0.8.1 (2020-11-07) diff --git a/pathspec/_meta.py b/pathspec/_meta.py index 7283d4b..ff4c323 100644 --- a/pathspec/_meta.py +++ b/pathspec/_meta.py @@ -31,6 +31,13 @@ "KOLANICH ", "JonjonHays ", "Isaac0616 ", + "SebastiaanZ ", + "RoelAdriaans ", + "raviselker ", + "johanvergeer ", + "danjer ", + "jhbuhrman ", + "WPDOrdina ", ] __license__ = "MPL 2.0" -__version__ = "0.9.0.dev1" +__version__ = "0.9.0"