diff --git a/README.md b/README.md index d47a3175353..747f13c3f60 100644 --- a/README.md +++ b/README.md @@ -289,7 +289,7 @@ the Apache License Version 2.0. Projects Showcase

- 🎉 Version 0.58.0 is out. Check out the release notes + 🎉 Version 0.58.1 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 aad32e4d8be..c9a3191d82b 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,41 @@ +# 0.58.1 + +The 0.58.1 release brings a set of minor enhancement and bugfix to the ZenML framework, such as the ability to delete all versions of a pipeline using the Client/CLI, providing greater flexibility and control over pipeline management. Users can now specify Python package installer arguments. Furthermore, a fix has been implemented for the Sentencepiece tokenizer materializer. + +We are also excited to announce the introduction of breadcrumbs to our dashboard to improve your navigation experience. This new feature allows you to easily visualize the path of your Pipelines, Models, and Artifacts, providing clear orientation, quick return to any section with a single click, and effortless navigation. + +We’d like to give a special thanks to @eltociear for their first contribution. + +## Docs re-work + +We reworked the structure of our documentation pages to make it easier to find answers to your practical questions. Please do let us know if you have any feedback on the structure or the new style of the 'How To' section! + +## What's Changed +* Add 0.58.0 to migration testing by @avishniakov in https://github.com/zenml-io/zenml/pull/2730 +* Print step names in color, again by @avishniakov in https://github.com/zenml-io/zenml/pull/2728 +* Workflow to create JIRA tickets when Github Issues are created by @strickvl in https://github.com/zenml-io/zenml/pull/2724 +* Allow specifying python package installer args by @schustmi in https://github.com/zenml-io/zenml/pull/2727 +* Send workflow dispatch event to Cloud Plugins repo on release by @wjayesh in https://github.com/zenml-io/zenml/pull/2633 +* Fix Nightly Release by @safoinme in https://github.com/zenml-io/zenml/pull/2711 +* Fix `zenml go` images visibility in notebook by @strickvl in https://github.com/zenml-io/zenml/pull/2742 +* Handle error when using `zenml info` with missing dependencies by @strickvl in https://github.com/zenml-io/zenml/pull/2725 +* Add Discord Alerter into TOC by @strickvl in https://github.com/zenml-io/zenml/pull/2735 +* Allow deleting all versions of a pipeline using the Client/CLI by @schustmi in https://github.com/zenml-io/zenml/pull/2745 +* Misc fixes by @schustmi in https://github.com/zenml-io/zenml/pull/2732 +* Move full SQLite DB migration test to slow CI by @strickvl in https://github.com/zenml-io/zenml/pull/2743 +* Add system flag as default for uv by @schustmi in https://github.com/zenml-io/zenml/pull/2748 +* Add how-to section & restructure/update documentation by @AlexejPenner in https://github.com/zenml-io/zenml/pull/2705 +* Fix typo in help text by @eltociear in https://github.com/zenml-io/zenml/pull/2750 +* Add support for function types in source utils by @schustmi in https://github.com/zenml-io/zenml/pull/2738 +* Fix Sentencepiece tokenizer materializer by @safoinme in https://github.com/zenml-io/zenml/pull/2751 + +## New Contributors +* @eltociear made their first contribution in https://github.com/zenml-io/zenml/pull/2750 + +**Full Changelog**: https://github.com/zenml-io/zenml/compare/0.58.0...0.58.1 + # 0.58.0 ## New Annotators diff --git a/pyproject.toml b/pyproject.toml index 07bf014b1c9..64144139683 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "zenml" -version = "0.58.0" +version = "0.58.1" 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 e8f304f8a67..a9299f67edf 100644 --- a/src/zenml/VERSION +++ b/src/zenml/VERSION @@ -1 +1 @@ -0.58.0 \ No newline at end of file +0.58.1 \ No newline at end of file diff --git a/src/zenml/zen_server/deploy/helm/Chart.yaml b/src/zenml/zen_server/deploy/helm/Chart.yaml index 31339b979ee..91c6c1c2845 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.58.0" +version: "0.58.1" 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 d222d7c0204..e80a69104d0 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.58.0 -helm install my-zenml oci://public.ecr.aws/zenml/zenml --version 0.58.0 +# example command for version 0.58.1 +helm install my-zenml oci://public.ecr.aws/zenml/zenml --version 0.58.1 ``` 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.58.1_release.py b/src/zenml/zen_stores/migrations/versions/0.58.1_release.py new file mode 100644 index 00000000000..87131e68b31 --- /dev/null +++ b/src/zenml/zen_stores/migrations/versions/0.58.1_release.py @@ -0,0 +1,23 @@ +"""Release [0.58.1]. + +Revision ID: 0.58.1 +Revises: 0.58.0 +Create Date: 2024-06-06 12:49:10.783249 + +""" + +# revision identifiers, used by Alembic. +revision = "0.58.1" +down_revision = "0.58.0" +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