Skip to content

Commit f14900d

Browse files
committed
chore: bump version to 0.15.0
1 parent 26a12ea commit f14900d

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

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

3636
```shell
37-
pip install edsnlp==0.14.0
37+
pip install edsnlp==0.15.0
3838
```
3939

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

4242
```shell
43-
pip install "edsnlp[ml]==0.14.0"
43+
pip install "edsnlp[ml]==0.15.0"
4444
```
4545

4646
### A first pipeline

changelog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
# Unreleased
3+
# v0.15.0 (2024-12-13)
44

55
### Added
66

docs/index.md

+2-2
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.14.0
18+
pip install edsnlp==0.15.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.14.0"
24+
pip install "edsnlp[ml]==0.15.0"
2525
```
2626

2727
### A first pipeline

docs/tutorials/training.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ readme = "README.md"
3737
requires-python = ">3.7.1,<4.0"
3838

3939
dependencies = [
40-
"edsnlp[ml]>=0.14.0",
40+
"edsnlp[ml]>=0.15.0",
4141
"sentencepiece>=0.1.96"
4242
]
4343

edsnlp/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import edsnlp.pipes
1616
from . import reducers
1717

18-
__version__ = "0.14.0"
18+
__version__ = "0.15.0"
1919

2020
BASE_DIR = Path(__file__).parent
2121

0 commit comments

Comments
 (0)