diff --git a/CHANGES.rst b/CHANGES.rst index 1e191a0..a7c78e9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,13 @@ Change History ============== +0.8.1 (2020-11-07) +------------------ + +- `Issue #43`_: Add support for addition operator. + +.. _`Issue #43`: https://github.com/cpburnz/python-path-specification/pull/43 + 0.8.0 (2020-04-09) ------------------ diff --git a/pathspec/__init__.py b/pathspec/__init__.py index 2400402..423759f 100644 --- a/pathspec/__init__.py +++ b/pathspec/__init__.py @@ -48,13 +48,14 @@ "groodt ", "ftrofin ", "pykong ", + "nhhollander ", ] __email__ = "cpburnz@gmail.com" __license__ = "MPL 2.0" __project__ = "pathspec" __status__ = "Development" -__updated__ = "2020-04-09" -__version__ = "0.8.0" +__updated__ = "2020-11-07" +__version__ = "0.8.1" from .pathspec import PathSpec from .pattern import Pattern, RegexPattern