diff --git a/changelog.md b/changelog.md index 3ff2550eb..537d10c8b 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v0.10.3 ### Added diff --git a/docs/index.md b/docs/index.md index e0c57bd4e..afdcff090 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 +pip install edsnlp==0.10.3 ``` or if you want to use the trainable components (using pytorch) ```{: data-md-color-scheme="slate" } -pip install "edsnlp[ml]" +pip install "edsnlp[ml]==0.10.3" ``` ### A first pipeline diff --git a/edsnlp/__init__.py b/edsnlp/__init__.py index faacaa212..84cba2043 100644 --- a/edsnlp/__init__.py +++ b/edsnlp/__init__.py @@ -14,7 +14,7 @@ import edsnlp.data # noqa: F401 import edsnlp.pipes -__version__ = "0.10.2" +__version__ = "0.10.3" BASE_DIR = Path(__file__).parent