diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 843fab7..1b30f8f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.1 +current_version = 0.10.0 [bumpversion:file:pyproject.toml] diff --git a/.copier-answers.yml b/.copier-answers.yml index df764d2..e4a5091 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -9,7 +9,7 @@ description: Kedro plugin with GCP Vertex AI support docs_url: https://kedro-vertexai.readthedocs.io/ full_name: Kedro Vertex AI Plugin github_url: https://github.com/getindata/kedro-vertexai -initial_version: 0.9.1 +initial_version: 0.10.0 keywords: - kedro-plugin - kedro diff --git a/CHANGELOG.md b/CHANGELOG.md index f32b7ef..c1ed847 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.10.0] - 2023-11-22 + - Added explicite pyarrow dependency to avoid critical vulnerability - Updated dependencies and tested for kedro `0.18.14` - [Feature 🚀] Node grouping: added option to group multiple Kedro nodes together at execution in single Vertex AI process to allow better optimization - less steps, shorter delays while running Vertex AI nodes and less wasted time of data serialization thanks to possibility to use the MemoryDataset @@ -72,7 +74,9 @@ - Initial version of **kedro-vertexai** plugin extracted from [kedro-kubeflow v0.6.0](https://github.com/getindata/kedro-kubeflow/tree/0.6.0) -[Unreleased]: https://github.com/getindata/kedro-vertexai/compare/0.9.1...HEAD +[Unreleased]: https://github.com/getindata/kedro-vertexai/compare/0.10.0...HEAD + +[0.10.0]: https://github.com/getindata/kedro-vertexai/compare/0.9.1...0.10.0 [0.9.1]: https://github.com/getindata/kedro-vertexai/compare/0.9.0...0.9.1 diff --git a/kedro_vertexai/__init__.py b/kedro_vertexai/__init__.py index d69d16e..61fb31c 100644 --- a/kedro_vertexai/__init__.py +++ b/kedro_vertexai/__init__.py @@ -1 +1 @@ -__version__ = "0.9.1" +__version__ = "0.10.0" diff --git a/pyproject.toml b/pyproject.toml index 40e2589..308944b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "kedro-vertexai" -version = "0.9.1" +version = "0.10.0" description = "Kedro plugin with GCP Vertex AI support" readme = "README.md" authors = ['Marcin Zabłocki ', 'Mateusz Pytel ', 'Mariusz Strzelecki '] diff --git a/sonar-project.properties b/sonar-project.properties index 1942354..f2514a3 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -6,7 +6,7 @@ sonar.tests=tests/ sonar.python.coverage.reportPaths=coverage.xml sonar.python.version=3.9 -sonar.projectVersion=0.9.1 +sonar.projectVersion=0.10.0 sonar.projectDescription=Kedro plugin with GCP Vertex AI support sonar.links.homepage=https://kedro-vertexai.readthedocs.io/ sonar.links.ci=https://github.com/getindata/kedro-vertexai/actions