Skip to content

Commit 8dfb62c

Browse files
committed
chore: bump version to 0.19.0
1 parent 1236c1a commit 8dfb62c

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,13 @@ Check out our interactive [demo](https://aphp.github.io/edsnlp/demo/) !
3535
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/).
3636

3737
```shell
38-
pip install edsnlp==0.18.0
38+
pip install edsnlp==0.19.0
3939
```
4040

4141
or if you want to use the trainable components (using pytorch)
4242

4343
```shell
44-
pip install "edsnlp[ml]==0.18.0"
44+
pip install "edsnlp[ml]==0.19.0"
4545
```
4646

4747
### A first pipeline

changelog.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

3-
# Unreleased
3+
## v0.19.0 (2025-10-04)
4+
5+
📢 EDS-NLP will drop support for Python 3.7, 3.8 and 3.9 support in the next major release (v0.20.0), in October 2025. Please upgrade to Python 3.10 or later.
46

57
### Added
68

@@ -17,8 +19,6 @@
1719

1820
## v0.18.0 (2025-09-02)
1921

20-
📢 EDS-NLP will drop support for Python 3.7, 3.8 and 3.9 support in the next major release (v0.19.0), in October 2025. Please upgrade to Python 3.10 or later.
21-
2222
### Added
2323

2424
- Added support for multiple loggers (`tensorboard`, `wandb`, `comet_ml`, `aim`, `mlflow`, `clearml`, `dvclive`, `csv`, `json`, `rich`) in `edsnlp.train` via the `logger` parameter. Default is [`json` and `rich`] for backward compatibility.

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ Check out our interactive [demo](https://aphp.github.io/edsnlp/demo/) !
1515
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/).
1616

1717
```{: data-md-color-scheme="slate" }
18-
pip install edsnlp==0.18.0
18+
pip install edsnlp==0.19.0
1919
```
2020

2121
or if you want to use the trainable components (using pytorch)
2222

2323
```{: data-md-color-scheme="slate" }
24-
pip install "edsnlp[ml]==0.18.0"
24+
pip install "edsnlp[ml]==0.19.0"
2525
```
2626

2727
### A first pipeline

edsnlp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import edsnlp.pipes
1616
from . import reducers
1717

18-
__version__ = "0.18.0"
18+
__version__ = "0.19.0"
1919

2020
BASE_DIR = Path(__file__).parent
2121

0 commit comments

Comments
 (0)