Skip to content

Commit 8276cc9

Browse files
committed
chore: bump version to 0.17.0
1 parent 0e5ae0f commit 8276cc9

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,11 @@ jobs:
153153
env:
154154
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
155155
run: |
156-
URL=https://edsnlp-$BRANCH_NAME.vercel.app/
156+
slugify () {
157+
echo "$1" | iconv -c -t ascii//TRANSLIT | sed -E 's/[^a-zA-Z0-9-]+//g' | tr A-Z a-z
158+
}
159+
RAW_PROJECT_NAME="edsnlp-$BRANCH_NAME"
160+
URL=https://$(slugify "$RAW_PROJECT_NAME").vercel.app/
157161
COMMENT_BODY="## Docs preview URL\n\n$URL\n\n"
158162
HEADER="Authorization: token $GITHUB_TOKEN"
159163
PR_COMMENTS_URL="https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.pull_request.number }}/comments"

README.md

Lines changed: 2 additions & 2 deletions
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.16.0
37+
pip install edsnlp==0.17.0
3838
```
3939

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

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

4646
### A first pipeline

changelog.md

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

3-
## Unreleased
3+
## v0.17.0 (2025-04-15)
44

55
### Added
66

@@ -24,7 +24,7 @@
2424
- The parameter "value_extract" of `eds.score` now correctly handles lists of patterns.
2525
- "Zero variance error" when computing param tuning importance are now catched and converted as a warning
2626

27-
## v0.16.0 (2025-0.3-26)
27+
## v0.16.0 (2025-03-26)
2828

2929
### Added
3030
- Hyperparameter Tuning for EDS-NLP: introduced a new script `edsnlp.tune` for hyperparameter tuning using Optuna. This feature allows users to efficiently optimize model parameters with options for single-phase or two-phase tuning strategies. Includes support for parameter importance analysis, visualization, pruning, and automatic handling of GPU time budgets.

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.16.0
18+
pip install edsnlp==0.17.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.16.0"
24+
pip install "edsnlp[ml]==0.17.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.16.0"
18+
__version__ = "0.17.0"
1919

2020
BASE_DIR = Path(__file__).parent
2121

0 commit comments

Comments
 (0)