From 8a5f36e97d2854c56014d0a158d034cd9f7f231b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Perceval=20Wajsb=C3=BCrt?= Date: Fri, 19 Jan 2024 07:57:00 +0100 Subject: [PATCH] chore: bump version to 0.10.4 --- changelog.md | 2 +- docs/index.md | 4 ++-- edsnlp/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/changelog.md b/changelog.md index f8e5a9150..6411885a9 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v0.10.4 ### Changed diff --git a/docs/index.md b/docs/index.md index afdcff090..f5a5102d7 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.10.3 +pip install edsnlp==0.10.4 ``` or if you want to use the trainable components (using pytorch) ```{: data-md-color-scheme="slate" } -pip install "edsnlp[ml]==0.10.3" +pip install "edsnlp[ml]==0.10.4" ``` ### A first pipeline diff --git a/edsnlp/__init__.py b/edsnlp/__init__.py index 84cba2043..e12504a1e 100644 --- a/edsnlp/__init__.py +++ b/edsnlp/__init__.py @@ -14,7 +14,7 @@ import edsnlp.data # noqa: F401 import edsnlp.pipes -__version__ = "0.10.3" +__version__ = "0.10.4" BASE_DIR = Path(__file__).parent