diff --git a/README.md b/README.md index 7dd6b997416..fa209869d2b 100644 --- a/README.md +++ b/README.md @@ -306,7 +306,7 @@ the Apache License Version 2.0. Projects Showcase

- 🎉 Version 0.60.0 is out. Check out the release notes + 🎉 Version 0.61.0 is out. Check out the release notes here.
🖥️ Download our VS Code Extension here. diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 8cf24a3db25..9ce21dbd539 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,4 +1,34 @@ +# 0.61.0 + +This release comes with a new and easy way to deploy an AWS ZenML stack from the dashboard and the CLI. Give it a try by going to the `Stacks` section in the dashboard or running the `zenml stack deploy` command! + +Additionally, this release includes improvements to our documentation and bugfixes for some integrations. + +## What's Changed + +* Add latest zenml version to migration testing scripts by @htahir1 in https://github.com/zenml-io/zenml/pull/2811 +* Add service connector support for Google Artifact Registry by @stefannica in https://github.com/zenml-io/zenml/pull/2771 +* Update order in which requirements are installed by @schustmi in https://github.com/zenml-io/zenml/pull/2341 +* Add installation instructions for Macs running on Apple Silicon by @strickvl in https://github.com/zenml-io/zenml/pull/2774 +* Added docs for trigger interface by @htahir1 in https://github.com/zenml-io/zenml/pull/2806 +* Update triggers docs with information on previously-run pipelines by @strickvl in https://github.com/zenml-io/zenml/pull/2820 +* Bump kfp version in GCP integration for pydantic2.0 by @wjayesh in https://github.com/zenml-io/zenml/pull/2824 +* Use shared cloud connection to reduce M2M token usage by @schustmi in https://github.com/zenml-io/zenml/pull/2817 +* Fail pipeline run if error happens during deployment by @schustmi in https://github.com/zenml-io/zenml/pull/2818 +* Login to dockerhub to solve rate limiting by @schustmi in https://github.com/zenml-io/zenml/pull/2828 +* Stack wizard CLI + Endpoints by @avishniakov in https://github.com/zenml-io/zenml/pull/2808 +* In-browser assisted full cloud stack deployments by @stefannica in https://github.com/zenml-io/zenml/pull/2816 +* Fix Kubeflow v2 integration by @wjayesh in https://github.com/zenml-io/zenml/pull/2829 +* fix skypilot jobs failing on VMs (sky bumped to 0.6.0) by @wjayesh in https://github.com/zenml-io/zenml/pull/2815 +* Fix unicode decode errors in k8s pod logs read operation by @wjayesh in https://github.com/zenml-io/zenml/pull/2807 +* Small improvements and bug fixes by @schustmi in https://github.com/zenml-io/zenml/pull/2821 +* TF tests + various integration (un)install improvements by @avishniakov in https://github.com/zenml-io/zenml/pull/2791 +* Fixed bug in the MacOS version check by @strickvl in https://github.com/zenml-io/zenml/pull/2819 +* Remove prefix for analytics labels by @schustmi in https://github.com/zenml-io/zenml/pull/2831 + + +**Full Changelog**: https://github.com/zenml-io/zenml/compare/0.60.0...test # 0.60.0 diff --git a/pyproject.toml b/pyproject.toml index d4b50bbd0a3..11f0961b02f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "zenml" -version = "0.60.0" +version = "0.61.0" packages = [{ include = "zenml", from = "src" }] description = "ZenML: Write production-ready ML code." authors = ["ZenML GmbH "] diff --git a/src/zenml/VERSION b/src/zenml/VERSION index 12193b84d55..821e2d60fba 100644 --- a/src/zenml/VERSION +++ b/src/zenml/VERSION @@ -1 +1 @@ -0.60.0 \ No newline at end of file +0.61.0 \ No newline at end of file diff --git a/src/zenml/cli/stack.py b/src/zenml/cli/stack.py index ee898124a1d..f0ba1507b97 100644 --- a/src/zenml/cli/stack.py +++ b/src/zenml/cli/stack.py @@ -426,7 +426,6 @@ def register_stack( ) ) else: - breakpoint() _, service_connector_resource_model = ( client.create_service_connector( name=stack_name, diff --git a/src/zenml/zen_server/deploy/helm/Chart.yaml b/src/zenml/zen_server/deploy/helm/Chart.yaml index c53713e68eb..26f50b21d9f 100644 --- a/src/zenml/zen_server/deploy/helm/Chart.yaml +++ b/src/zenml/zen_server/deploy/helm/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: zenml -version: "0.60.0" +version: "0.61.0" description: Open source MLOps framework for portable production ready ML pipelines keywords: - mlops diff --git a/src/zenml/zen_server/deploy/helm/README.md b/src/zenml/zen_server/deploy/helm/README.md index 344ba6265c0..5cacf9ee3f5 100644 --- a/src/zenml/zen_server/deploy/helm/README.md +++ b/src/zenml/zen_server/deploy/helm/README.md @@ -20,8 +20,8 @@ ZenML is an open-source MLOps framework designed to help you create robust, main To install the ZenML chart directly from Amazon ECR, use the following command: ```bash -# example command for version 0.60.0 -helm install my-zenml oci://public.ecr.aws/zenml/zenml --version 0.60.0 +# example command for version 0.61.0 +helm install my-zenml oci://public.ecr.aws/zenml/zenml --version 0.61.0 ``` Note: Ensure you have OCI support enabled in your Helm client and that you are authenticated with Amazon ECR. diff --git a/src/zenml/zen_stores/migrations/versions/0.61.0_release.py b/src/zenml/zen_stores/migrations/versions/0.61.0_release.py new file mode 100644 index 00000000000..8df6be4bd60 --- /dev/null +++ b/src/zenml/zen_stores/migrations/versions/0.61.0_release.py @@ -0,0 +1,23 @@ +"""Release [0.61.0]. + +Revision ID: 0.61.0 +Revises: 0d707865f404 +Create Date: 2024-07-08 15:52:54.765307 + +""" + +# revision identifiers, used by Alembic. +revision = "0.61.0" +down_revision = "0d707865f404" +branch_labels = None +depends_on = None + + +def upgrade() -> None: + """Upgrade database schema and/or data, creating a new revision.""" + pass + + +def downgrade() -> None: + """Downgrade database schema and/or data back to the previous revision.""" + pass