Skip to content

Commit

Permalink
Merge pull request #126 from getindata/release-0.9.1
Browse files Browse the repository at this point in the history
Release 0.9.1
  • Loading branch information
marrrcin authored Aug 16, 2023
2 parents 932d86f + 2ec47b5 commit 0bcb35e
Show file tree
Hide file tree
Showing 7 changed files with 2,153 additions and 1,498 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.9.0
current_version = 0.9.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 @@ -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.0
initial_version: 0.9.1
keywords:
- kedro-plugin
- kedro
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## [Unreleased]

## [0.9.1] - 2023-08-16

- Updated dependencies of kedro to `0.18.8`, mlflow to `2.3.2` and others
- Upgrade dependencies to resolve [GHSA-6628-q6j9-w8vg](https://github.com/advisories/GHSA-6628-q6j9-w8vg).

## [0.9.0] - 2023-05-15

- Add cache to Kedro's context in the `ContextHelper` class to prevent re-loading
Expand Down Expand Up @@ -63,7 +68,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.0...HEAD
[Unreleased]: https://github.com/getindata/kedro-vertexai/compare/0.9.1...HEAD

[0.9.1]: https://github.com/getindata/kedro-vertexai/compare/0.9.0...0.9.1

[0.9.0]: https://github.com/getindata/kedro-vertexai/compare/0.8.1...0.9.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.9.0"
__version__ = "0.9.1"
3,616 changes: 2,132 additions & 1,484 deletions poetry.lock

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "kedro-vertexai"
version = "0.9.0"
version = "0.9.1"
description = "Kedro plugin with GCP Vertex AI support"
readme = "README.md"
authors = ['Marcin Zabłocki <[email protected]>', 'Mateusz Pytel <[email protected]>', 'Mariusz Strzelecki <[email protected]>']
Expand Down Expand Up @@ -37,27 +37,27 @@ kedro = ">=0.18.8,<0.19.0"
click = ">=8.0.4"
kfp = ">=1.8.12,<2.0"
tabulate = ">=0.8.7"
semver = "~=2.10"
pydantic = "~=1.9.0"
semver = ">=2.10,<4.0.0"
pydantic = ">=1.9.0,<2.0.0"
google-auth = "<3"
google-cloud-scheduler = ">=2.3.2"
google-cloud-iam = "<3"
gcsfs = ">=2022.1"
fsspec = ">=2022.1"
google-cloud-storage = "<3.0.0"
grpcio = "~=1.44.0"
grpcio-status = "~=1.44.0"
protobuf = "<=3.20.0"
grpcio = ">=1.4.0,<2.0.0"
grpcio-status = ">=1.4.0,<2.0.0"
protobuf = ">=3.18.0,<21.0"
kedro-mlflow = {version = ">=0.11.8,<0.12.0", optional = true}
cachetools = ">=5.3,<6.0"
cachetools = ">=3.0,<6.0"

[tool.poetry.extras]
mlflow = ["kedro-mlflow"]

[tool.poetry.dev-dependencies]
pytest = "<=7"
pytest = "<=8"
pytest-cov = ">=2.8.0, <4.0.0"
tox = ">=3.25.1"
tox = ">=3.25.1,<4.0.0"
pre-commit = "2.20.0"
pytest-subtests = ">=0.8.0, <1.0.0"
responses = ">=0.13.4"
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.9.0
sonar.projectVersion=0.9.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 0bcb35e

Please sign in to comment.