Skip to content

Commit ba08ee4

Browse files
committed
chore: bump version to 0.11.2
1 parent fcd4d35 commit ba08ee4

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

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.11.1
37+
pip install edsnlp==0.11.2
3838
```
3939

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

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

4646
### A first pipeline

changelog.md

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

3-
## Unreleased
3+
## v0.11.2
44

55
### Fixed
66
- Fix `edsnlp.utils.file_system.normalize_fs_path` file system detection not working correctly
7+
- Improved performance of `edsnlp.data` methods over a filesystem (`fs` parameter)
78

89
## v0.11.1 (2024-04-02)
910

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.11.1
18+
pip install edsnlp==0.11.2
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.11.1"
24+
pip install "edsnlp[ml]==0.11.2"
2525
```
2626

2727
### A first pipeline

edsnlp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import edsnlp.data # noqa: F401
1515
import edsnlp.pipes
1616

17-
__version__ = "0.11.1"
17+
__version__ = "0.11.2"
1818

1919
BASE_DIR = Path(__file__).parent
2020

0 commit comments

Comments
 (0)