Skip to content

Commit

Permalink
Merge pull request #168 from getindata/release-0.11.1
Browse files Browse the repository at this point in the history
Release 0.11.1
  • Loading branch information
Lasica committed Jul 1, 2024
2 parents 059fe84 + 1b6b687 commit 56fff64
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.11.0
current_version = 0.11.1

[bumpversion:file:pyproject.toml]

Expand Down
2 changes: 1 addition & 1 deletion .copier-answers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,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.11.0
initial_version: 0.11.1
keywords:
- kedro-plugin
- kedro
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.11.1] - 2024-07-01

## [0.11.0] - 2024-03-22

- Applied copier template config for consistency - refactoring and configuration small details
Expand Down Expand Up @@ -81,7 +83,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.11.0...HEAD
[Unreleased]: https://github.com/getindata/kedro-vertexai/compare/0.11.1...HEAD

[0.11.1]: https://github.com/getindata/kedro-vertexai/compare/0.11.0...0.11.1

[0.11.0]: https://github.com/getindata/kedro-vertexai/compare/0.10.0...0.11.0

Expand Down
2 changes: 1 addition & 1 deletion kedro_vertexai/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.11.0"
__version__ = "0.11.1"
4 changes: 1 addition & 3 deletions kedro_vertexai/context_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,7 @@ def config(self) -> PluginConfig:
]
}
)
vertex_conf = self._ensure_obj_is_dict(
self.context.config_loader.get(self.CONFIG_KEY)
)
vertex_conf = self._ensure_obj_is_dict(cl.get(self.CONFIG_KEY))
except MissingConfigException:
if not isinstance(cl, OmegaConfigLoader):
raise ValueError(
Expand Down
19 changes: 15 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "kedro-vertexai"
version = "0.11.0"
version = "0.11.1"
description = "Kedro plugin with GCP Vertex AI support"
readme = "README.md"
authors = ['Marcin Zabłocki <marcin.zablocki@getindata.com>', 'Mateusz Pytel <mateusz.pytel@getindata.com>', 'Mariusz Strzelecki <mariusz.strzelecki@getindata.com>', 'Artur Dobrogowski <artur.dobrogowski@getindata.com>']
Expand Down Expand Up @@ -59,7 +59,7 @@ cachetools = ">=3.0,<6.0"
mlflow = ["kedro-mlflow"]

[tool.poetry.dev-dependencies]
pytest = "<=8"
pytest = "<=8.0.2"
pytest-cov = ">=2.8.0, <4.0.0"
tox = ">=3.25.1,<4.0.0"
pre-commit = "2.20.0"
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sonar.tests=tests/
sonar.python.coverage.reportPaths=coverage.xml
sonar.python.version=3.9

sonar.projectVersion=0.11.0
sonar.projectVersion=0.11.1
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
Expand Down

0 comments on commit 56fff64

Please sign in to comment.