Skip to content

Commit

Permalink
chore: bump version to 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
percevalw committed Dec 13, 2024
1 parent 97ed11f commit 8f64279
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,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.14.0
pip install edsnlp==0.15.0
```

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

```shell
pip install "edsnlp[ml]==0.14.0"
pip install "edsnlp[ml]==0.15.0"
```

### A first pipeline
Expand Down
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

# Unreleased
# v0.15.0 (2024-12-13)

### Added

Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.14.0
pip install edsnlp==0.15.0
```

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

```{: data-md-color-scheme="slate" }
pip install "edsnlp[ml]==0.14.0"
pip install "edsnlp[ml]==0.15.0"
```

### A first pipeline
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/training.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ readme = "README.md"
requires-python = ">3.7.1,<4.0"

dependencies = [
"edsnlp[ml]>=0.14.0",
"edsnlp[ml]>=0.15.0",
"sentencepiece>=0.1.96"
]

Expand Down
2 changes: 1 addition & 1 deletion edsnlp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import edsnlp.pipes
from . import reducers

__version__ = "0.14.0"
__version__ = "0.15.0"

BASE_DIR = Path(__file__).parent

Expand Down

0 comments on commit 8f64279

Please sign in to comment.