Skip to content

Commit

Permalink
Prepare release 0.66.0 (#2993)
Browse files Browse the repository at this point in the history
  • Loading branch information
schustmi authored Sep 9, 2024
1 parent 4f1b08b commit 2c4bc35
Show file tree
Hide file tree
Showing 7 changed files with 87 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ the Apache License Version 2.0.
<a href="https://github.com/zenml-io/zenml-projects">Projects Showcase</a>
<br />
<br />
🎉 Version 0.65.0 is out. Check out the release notes
🎉 Version 0.66.0 is out. Check out the release notes
<a href="https://github.com/zenml-io/zenml/releases">here</a>.
<br />
🖥️ Download our VS Code Extension <a href="https://marketplace.visualstudio.com/items?itemName=ZenML.zenml-vscode">here</a>.
Expand Down
58 changes: 58 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,63 @@
<!-- markdown-link-check-disable -->

# 0.66.0

## New Features and Improvements

### Python 3.12 support

This release adds support for Python 3.12, which means you can now develop your ZenML pipelines
with the latest python features.

### Easier way to specify component settings

Before this release, settings for stack components had to be specified with both the component type
as well as the flavor. We simplified this and it is now possible to specify settings just using the
component type:
```python
# Before
@pipeline(settings={"orchestrator.sagemaker": SagemakerOrchestratorSettings(...)})
def my_pipeline():
...

# Now
@pipeline(settings={"orchestrator": SagemakerOrchestratorSettings(...)})
def my_pipeline():
...
```

## Breaking changes

* In order to slim down the ZenML library, we removed the `numpy` and `pandas` libraries as dependencies of ZenML. If your
code uses these libraries, you have to make sure they're installed in your local environment as well as the Docker images that
get built to run your pipelines (Use `DockerSettings.requirements` or `DockerSettings.required_integrations`).

## What's Changed
* Add 0.65.0 to migration testing by @avishniakov in https://github.com/zenml-io/zenml/pull/2963
* Hotfix for release flow by @avishniakov in https://github.com/zenml-io/zenml/pull/2961
* Fix the one-click AWS and GCP stack deployments by @stefannica in https://github.com/zenml-io/zenml/pull/2964
* Fix wandb mypy error by @strickvl in https://github.com/zenml-io/zenml/pull/2967
* Fix accelerate docs for 0.65.0+ by @avishniakov in https://github.com/zenml-io/zenml/pull/2968
* Dynamic model version names docs by @avishniakov in https://github.com/zenml-io/zenml/pull/2970
* Logging nits by @avishniakov in https://github.com/zenml-io/zenml/pull/2972
* Fix excess Azure logging by @strickvl in https://github.com/zenml-io/zenml/pull/2965
* Fix typo in docs by @strickvl in https://github.com/zenml-io/zenml/pull/2976
* Pass code path to template run by @schustmi in https://github.com/zenml-io/zenml/pull/2973
* Prevent extra attributes in component configs by @schustmi in https://github.com/zenml-io/zenml/pull/2978
* Dependency cleanup and Python 3.12 support by @bcdurak in https://github.com/zenml-io/zenml/pull/2953
* Few nits in docs based on integrations review by @avishniakov in https://github.com/zenml-io/zenml/pull/2983
* Update slack alerter docs by @stefannica in https://github.com/zenml-io/zenml/pull/2981
* Update Kubeflow orchestrator docs by @stefannica in https://github.com/zenml-io/zenml/pull/2985
* Build docker images for python 3.12 by @schustmi in https://github.com/zenml-io/zenml/pull/2988
* Allow shortcut keys for component settings by @schustmi in https://github.com/zenml-io/zenml/pull/2957
* Remove references to workspaces from docs by @strickvl in https://github.com/zenml-io/zenml/pull/2991
* Added some adjustments for colab by @AlexejPenner in https://github.com/zenml-io/zenml/pull/2966
* Reverting the installation of `mlstacks` after its new release by @bcdurak in https://github.com/zenml-io/zenml/pull/2980
* Small dependency and docs updates by @strickvl in https://github.com/zenml-io/zenml/pull/2982


**Full Changelog**: https://github.com/zenml-io/zenml/compare/0.65.0...0.66.0

# 0.65.0

## New Features and Improvements
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "zenml"
version = "0.65.0"
version = "0.66.0"
packages = [{ include = "zenml", from = "src" }]
description = "ZenML: Write production-ready ML code."
authors = ["ZenML GmbH <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion src/zenml/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.65.0
0.66.0
2 changes: 1 addition & 1 deletion src/zenml/zen_server/deploy/helm/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: zenml
version: "0.65.0"
version: "0.66.0"
description: Open source MLOps framework for portable production ready ML pipelines
keywords:
- mlops
Expand Down
4 changes: 2 additions & 2 deletions src/zenml/zen_server/deploy/helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.65.0
helm install my-zenml oci://public.ecr.aws/zenml/zenml --version 0.65.0
# example command for version 0.66.0
helm install my-zenml oci://public.ecr.aws/zenml/zenml --version 0.66.0
```

Note: Ensure you have OCI support enabled in your Helm client and that you are authenticated with Amazon ECR.
Expand Down
23 changes: 23 additions & 0 deletions src/zenml/zen_stores/migrations/versions/0.66.0_release.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
"""Release [0.66.0].
Revision ID: 0.66.0
Revises: 0.65.0
Create Date: 2024-09-09 14:12:13.152805
"""

# revision identifiers, used by Alembic.
revision = "0.66.0"
down_revision = "0.65.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

0 comments on commit 2c4bc35

Please sign in to comment.