From d6d4c92da526da716690fb80a746cc1b8892fd82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Perceval=20Wajsb=C3=BCrt?= Date: Fri, 22 Sep 2023 09:16:19 +0200 Subject: [PATCH] chore: bump version to 0.9.1 --- README.md | 2 +- changelog.md | 13 +++++++++++++ docs/index.md | 2 +- edsnlp/__init__.py | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7f8cb1c03..71f96350a 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ pip install edsnlp We recommend pinning the library version in your projects, or use a strict package manager like [Poetry](https://python-poetry.org/). ```shell -pip install edsnlp==0.9.0 +pip install edsnlp==0.9.1 ``` ### A first pipeline diff --git a/changelog.md b/changelog.md index 7dfbfa062..97101019f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,18 @@ # Changelog +## v0.9.1 + +## Changed + +- Improve negation patterns +- Abstent disorders now set the negation to True when matched as `ABSENT` +- Default qualifier is now `None` instead of `False` (empty string) + +### Fixed + +- `span_getter` is not incompatible with on_ents_only anymore +- `ContextualMatcher` now supports empty matches (e.g. lookahead/lookbehind) in `assign` patterns + ## v0.9.0 ### Added diff --git a/docs/index.md b/docs/index.md index 874114939..a4df3752d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -23,7 +23,7 @@ color:green Successfully installed! We recommend pinning the library version in your projects, or use a strict package manager like [Poetry](https://python-poetry.org/). ``` -pip install edsnlp==0.9.0 +pip install edsnlp==0.9.1 ``` ### A first pipeline diff --git a/edsnlp/__init__.py b/edsnlp/__init__.py index 255d25d98..c0383d51a 100644 --- a/edsnlp/__init__.py +++ b/edsnlp/__init__.py @@ -8,6 +8,6 @@ from . import extensions from .language import * -__version__ = "0.9.0" +__version__ = "0.9.1" BASE_DIR = Path(__file__).parent