From 971cae5d0099cd6eaae7f70e26f8c0cd3fa5a873 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Perceval=20Wajsb=C3=BCrt?= Date: Thu, 14 Nov 2024 12:53:11 +0100 Subject: [PATCH] chore: bump version to 0.14.0 --- README.md | 4 ++-- changelog.md | 2 +- docs/index.md | 4 ++-- edsnlp/__init__.py | 2 +- pyproject.toml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6f5602224..f30dca7d7 100644 --- a/README.md +++ b/README.md @@ -34,13 +34,13 @@ Check out our interactive [demo](https://aphp.github.io/edsnlp/demo/) ! You can install EDS-NLP via `pip`. 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.13.1 +pip install edsnlp==0.14.0 ``` or if you want to use the trainable components (using pytorch) ```shell -pip install "edsnlp[ml]==0.13.1" +pip install "edsnlp[ml]==0.14.0" ``` ### A first pipeline diff --git a/changelog.md b/changelog.md index 9836cadd0..133f20fc3 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v0.14.0 (2024-11-14) ### Added diff --git a/docs/index.md b/docs/index.md index 546abc9fe..e3ac71610 100644 --- a/docs/index.md +++ b/docs/index.md @@ -15,13 +15,13 @@ Check out our interactive [demo](https://aphp.github.io/edsnlp/demo/) ! You can install EDS-NLP via `pip`. We recommend pinning the library version in your projects, or use a strict package manager like [Poetry](https://python-poetry.org/). ```{: data-md-color-scheme="slate" } -pip install edsnlp==0.13.1 +pip install edsnlp==0.14.0 ``` or if you want to use the trainable components (using pytorch) ```{: data-md-color-scheme="slate" } -pip install "edsnlp[ml]==0.13.1" +pip install "edsnlp[ml]==0.14.0" ``` ### A first pipeline diff --git a/edsnlp/__init__.py b/edsnlp/__init__.py index 3ab460806..620685214 100644 --- a/edsnlp/__init__.py +++ b/edsnlp/__init__.py @@ -15,7 +15,7 @@ import edsnlp.pipes from . import reducers -__version__ = "0.13.1" +__version__ = "0.14.0" BASE_DIR = Path(__file__).parent diff --git a/pyproject.toml b/pyproject.toml index a071d4088..eb8e7dfb7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ dependencies = [ "pysimstring>=1.2.1", "regex", "spacy>=3.2,<3.8", - "confit>=0.5.5", + "confit>=0.7.0", "tqdm", "umls-downloader>=0.1.1", "numpy>=1.15.0,<1.23.2; python_version<'3.8'",