From db0437e03fd53e3299d64a227a42489a15621f01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Perceval=20Wajsb=C3=BCrt?= Date: Mon, 16 Oct 2023 18:45:26 +0200 Subject: [PATCH] chore: bump version to 0.10.0alpha1 --- README.md | 4 ++-- changelog.md | 2 +- docs/index.md | 4 ++-- edsnlp/__init__.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index da89f9555..29ae951c3 100644 --- a/README.md +++ b/README.md @@ -24,13 +24,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.9.1 +pip install edsnlp==0.10.0beta1 ``` or if you want to use the trainable components (using pytorch) ```shell -pip install "edsnlp[ml]==0.9.1" +pip install "edsnlp[ml]==0.10.0beta1" ``` ### A first pipeline diff --git a/changelog.md b/changelog.md index 847bd5f1d..d133af067 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog -## v0.10.0.beta.1 +## v0.10.0beta1 Large refacto of EDS-NLP to allow training models and performing inference using PyTorch as the deep-learning backend. Rather than a mere wrapper of Pytorch using spaCy, this is diff --git a/docs/index.md b/docs/index.md index 70bd52ed8..241ff2d08 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.9.1 +pip install edsnlp==0.10.0beta1 ``` or if you want to use the trainable components (using pytorch) ```{: data-md-color-scheme="slate" } -pip install "edsnlp[ml]==0.9.1" +pip install "edsnlp[ml]==0.10.0beta1" ``` ### A first pipeline diff --git a/edsnlp/__init__.py b/edsnlp/__init__.py index 9bbc61bfe..9a3854ecf 100644 --- a/edsnlp/__init__.py +++ b/edsnlp/__init__.py @@ -11,6 +11,6 @@ from .core.registry import registry from . import language -__version__ = "0.9.1" +__version__ = "0.10.0beta1" BASE_DIR = Path(__file__).parent