From 8f6427946e9861c4b94b794d84ca20e088843788 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Perceval=20Wajsb=C3=BCrt?= Date: Fri, 13 Dec 2024 18:23:59 +0100 Subject: [PATCH] chore: bump version to 0.15.0 --- README.md | 4 ++-- changelog.md | 2 +- docs/index.md | 4 ++-- docs/tutorials/training.md | 2 +- edsnlp/__init__.py | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index f30dca7d7..047ac3767 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.14.0 +pip install edsnlp==0.15.0 ``` or if you want to use the trainable components (using pytorch) ```shell -pip install "edsnlp[ml]==0.14.0" +pip install "edsnlp[ml]==0.15.0" ``` ### A first pipeline diff --git a/changelog.md b/changelog.md index eb24a6a2b..a617c861f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog -# Unreleased +# v0.15.0 (2024-12-13) ### Added diff --git a/docs/index.md b/docs/index.md index e3ac71610..3397951e2 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.14.0 +pip install edsnlp==0.15.0 ``` or if you want to use the trainable components (using pytorch) ```{: data-md-color-scheme="slate" } -pip install "edsnlp[ml]==0.14.0" +pip install "edsnlp[ml]==0.15.0" ``` ### A first pipeline diff --git a/docs/tutorials/training.md b/docs/tutorials/training.md index 7edb8b42e..3ec95f1f9 100644 --- a/docs/tutorials/training.md +++ b/docs/tutorials/training.md @@ -37,7 +37,7 @@ readme = "README.md" requires-python = ">3.7.1,<4.0" dependencies = [ - "edsnlp[ml]>=0.14.0", + "edsnlp[ml]>=0.15.0", "sentencepiece>=0.1.96" ] diff --git a/edsnlp/__init__.py b/edsnlp/__init__.py index 620685214..a2391cc3c 100644 --- a/edsnlp/__init__.py +++ b/edsnlp/__init__.py @@ -15,7 +15,7 @@ import edsnlp.pipes from . import reducers -__version__ = "0.14.0" +__version__ = "0.15.0" BASE_DIR = Path(__file__).parent