diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 77e8399b3..d0d0da613 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -5,7 +5,7 @@ name: Test Build on: - push: + pull_request: branches: - v*.*.* - build-* diff --git a/README.md b/README.md index 0a553df27..7f8cb1c03 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ pip install edsnlp 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.8.1 +pip install edsnlp==0.9.0 ``` ### A first pipeline diff --git a/changelog.md b/changelog.md index cdc59fcb8..7dfbfa062 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v0.9.0 ### Added diff --git a/docs/index.md b/docs/index.md index 3c883f305..874114939 100644 --- a/docs/index.md +++ b/docs/index.md @@ -23,7 +23,7 @@ color:green Successfully installed! We recommend pinning the library version in your projects, or use a strict package manager like [Poetry](https://python-poetry.org/). ``` -pip install edsnlp==0.8.1 +pip install edsnlp==0.9.0 ``` ### A first pipeline diff --git a/edsnlp/__init__.py b/edsnlp/__init__.py index 1feb00403..255d25d98 100644 --- a/edsnlp/__init__.py +++ b/edsnlp/__init__.py @@ -8,6 +8,6 @@ from . import extensions from .language import * -__version__ = "0.8.1" +__version__ = "0.9.0" BASE_DIR = Path(__file__).parent