diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c0e1c9..ad6f783 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,10 +2,35 @@ +## v0.2.0 (2023-10-06) + +### Chore + +* chore(release): 0.2.0 (#71) ([`718200d`](https://github.com/artefactory/vertex-pipelines-deployer/commit/718200dab8e27b804ee91a5543ca316b04ca3dfa)) + +### Documentation + +* docs: update documentation (#68) ([`e942add`](https://github.com/artefactory/vertex-pipelines-deployer/commit/e942adddccca85c28941cd986f7afcad986cffd3)) + +### Feature + +* feat: add support for toml config files (#70) ([`b997e69`](https://github.com/artefactory/vertex-pipelines-deployer/commit/b997e69b6838d35d4818d2db9f28ab0927131414)) + +### Fix + +* fix: pipelines objects can be named as `{pipeline_name}` instead of `pipeline` (#69) ([`f79d081`](https://github.com/artefactory/vertex-pipelines-deployer/commit/f79d081cb81ea92f01cfd29bf46db3b1bfcb368c)) + +* fix: bad config error at pipeline level in checks (#67) ([`d8dab84`](https://github.com/artefactory/vertex-pipelines-deployer/commit/d8dab84b22c00ef449e9f6cec707421e0222850e)) + + ## v0.1.1 (2023-10-05) ### Chore +* chore(release): 0.1.1 + +Automatically generated by semantic-release ([`53b3372`](https://github.com/artefactory/vertex-pipelines-deployer/commit/53b3372225c834affd56c64b797e611d0975e26a)) + * chore(release): 01.1 (#64) ([`2497456`](https://github.com/artefactory/vertex-pipelines-deployer/commit/24974567435dbf5ee0a8b3cb8708b9dedbf9bd0f)) ### Documentation diff --git a/deployer/__init__.py b/deployer/__init__.py index 485f44a..d3ec452 100644 --- a/deployer/__init__.py +++ b/deployer/__init__.py @@ -1 +1 @@ -__version__ = "0.1.1" +__version__ = "0.2.0" diff --git a/pyproject.toml b/pyproject.toml index 6467e25..c2496b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "vertex-deployer" -version = "0.1.1" +version = "0.2.0" description = "" authors = ["julesbertrand "] readme = "README.md"