Skip to content

Commit 59ebe58

Browse files
github-actions[bot]Zen-MLschustmi
authored
Prepare release 0.72.0 (#3280)
* Adding the new version to the necessary files. * Release notes --------- Co-authored-by: ZenML GmbH <[email protected]> Co-authored-by: Michael Schuster <[email protected]>
1 parent 91a8513 commit 59ebe58

File tree

15 files changed

+74
-16
lines changed

15 files changed

+74
-16
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ the Apache License Version 2.0.
333333
<a href="https://github.com/zenml-io/zenml-projects">Projects Showcase</a>
334334
<br />
335335
<br />
336-
🎉 Version 0.71.0 is out. Check out the release notes
336+
🎉 Version 0.72.0 is out. Check out the release notes
337337
<a href="https://github.com/zenml-io/zenml/releases">here</a>.
338338
<br />
339339
🖥️ Download our VS Code Extension <a href="https://marketplace.visualstudio.com/items?itemName=ZenML.zenml-vscode">here</a>.

RELEASE_NOTES.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
<!-- markdown-link-check-disable -->
22

3+
# 0.72.0
4+
5+
The `0.72.0` release contains various bug fixes, performance improvements and improvements to our documentation.
6+
7+
## What's Changed
8+
* Fix typo in readme by @schustmi in https://github.com/zenml-io/zenml/pull/3247
9+
* adding 0.71.0 to migration tests by @bcdurak in https://github.com/zenml-io/zenml/pull/3250
10+
* Fix workload token expiration for cached steps/runs by @schustmi in https://github.com/zenml-io/zenml/pull/3243
11+
* Implement wandb settings conversion for latest release by @schustmi in https://github.com/zenml-io/zenml/pull/3246
12+
* Add CPU usage note to Modal docs by @strickvl in https://github.com/zenml-io/zenml/pull/3253
13+
* Re-authenticate requests that failed authentication by @stefannica in https://github.com/zenml-io/zenml/pull/3256
14+
* Add new toc by @htahir1 in https://github.com/zenml-io/zenml/pull/3255
15+
* Add step run unique constraint by @schustmi in https://github.com/zenml-io/zenml/pull/3236
16+
* Fix build reuse after stack updates by @schustmi in https://github.com/zenml-io/zenml/pull/3251
17+
* Fix fetching run template using the client by @schustmi in https://github.com/zenml-io/zenml/pull/3258
18+
* Improved deprecation messages for artifact configs and run metadata by @bcdurak in https://github.com/zenml-io/zenml/pull/3261
19+
* Filtering and sorting by @bcdurak in https://github.com/zenml-io/zenml/pull/3230
20+
* Fix hyperparam tuning docs by @stefannica in https://github.com/zenml-io/zenml/pull/3259
21+
* Include user of latest run in pipeline response by @schustmi in https://github.com/zenml-io/zenml/pull/3262
22+
* Create model versions server-side to avoid race conditions by @schustmi in https://github.com/zenml-io/zenml/pull/3254
23+
* Fix request model validation by @schustmi in https://github.com/zenml-io/zenml/pull/3245
24+
* Improve docs to encourage using secrets by @AlexejPenner in https://github.com/zenml-io/zenml/pull/3272
25+
* Include service connector requirements in custom flavor registration by @schustmi in https://github.com/zenml-io/zenml/pull/3267
26+
* Fix the onboarding state to account for zenml login by @stefannica in https://github.com/zenml-io/zenml/pull/3270
27+
* Improve the efficiency of some SQL queries by @schustmi in https://github.com/zenml-io/zenml/pull/3263
28+
* Fix broken link by @strickvl in https://github.com/zenml-io/zenml/pull/3276
29+
* Bump NLP template by @schustmi in https://github.com/zenml-io/zenml/pull/3275
30+
* Fixed and improved sorting by @bcdurak in https://github.com/zenml-io/zenml/pull/3266
31+
* Add matplotlib visualization to ZenML dashboard by @htahir1 in https://github.com/zenml-io/zenml/pull/3278
32+
* Fix azure integration by @schustmi in https://github.com/zenml-io/zenml/pull/3279
33+
34+
35+
**Full Changelog**: https://github.com/zenml-io/zenml/compare/0.71.0...0.72.0
36+
37+
338
# 0.71.0
439

540
ZenML version 0.71.0 delivers a new Modal step operator integration as its

examples/quickstart/configs/training_aws.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Environment configuration
22
settings:
33
docker:
4-
parent_image: "715803424590.dkr.ecr.eu-central-1.amazonaws.com/zenml-public-pipelines:quickstart-0.71.0-py3.11-aws"
4+
parent_image: "715803424590.dkr.ecr.eu-central-1.amazonaws.com/zenml-public-pipelines:quickstart-0.72.0-py3.11-aws"
55
skip_build: True # If you switch this to False remove the parent_image
66
requirements: requirements.txt
77
environment:

examples/quickstart/configs/training_azure.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Environment configuration
22
settings:
33
docker:
4-
parent_image: "zenmldocker/zenml-public-pipelines:quickstart-0.71.0-py3.11-azure"
4+
parent_image: "zenmldocker/zenml-public-pipelines:quickstart-0.72.0-py3.11-azure"
55
skip_build: True
66
requirements: requirements.txt
77
environment:

examples/quickstart/configs/training_gcp.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Environment configuration
22
settings:
33
docker:
4-
parent_image: "zenmldocker/zenml-public-pipelines:quickstart-0.71.0-py3.11-gcp"
4+
parent_image: "zenmldocker/zenml-public-pipelines:quickstart-0.72.0-py3.11-gcp"
55
skip_build: True
66
requirements: requirements.txt
77
environment:

examples/quickstart/quickstart.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@
499499
"# Common imports and setup\n",
500500
"if CLOUD_PROVIDER.lower() == \"gcp\":\n",
501501
" parent_image = (\n",
502-
" \"zenmldocker/zenml-public-pipelines:quickstart-0.71.0-py3.11-gcp\"\n",
502+
" \"zenmldocker/zenml-public-pipelines:quickstart-0.72.0-py3.11-gcp\"\n",
503503
" )\n",
504504
" skip_build = True\n",
505505
"\n",
@@ -508,7 +508,7 @@
508508
" SagemakerOrchestratorSettings,\n",
509509
" )\n",
510510
"\n",
511-
" parent_image = \"339712793861.dkr.ecr.eu-central-1.amazonaws.com/zenml-public-pipelines:quickstart-0.71.0-py3.11-aws\"\n",
511+
" parent_image = \"339712793861.dkr.ecr.eu-central-1.amazonaws.com/zenml-public-pipelines:quickstart-0.72.0-py3.11-aws\"\n",
512512
" skip_build = True # if you switch this to False, you need to remove the parent image\n",
513513
"\n",
514514
" settings[\"orchestrator.sagemaker\"] = SagemakerOrchestratorSettings(\n",
@@ -517,7 +517,7 @@
517517
"\n",
518518
"elif CLOUD_PROVIDER.lower() == \"azure\":\n",
519519
" parent_image = (\n",
520-
" \"zenmldocker/zenml-public-pipelines:quickstart-0.71.0-py3.11-azure\"\n",
520+
" \"zenmldocker/zenml-public-pipelines:quickstart-0.72.0-py3.11-azure\"\n",
521521
" )\n",
522522
" skip_build = True\n",
523523
"\n",

examples/quickstart/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
zenml[server]==0.71.0
1+
zenml[server]==0.72.0
22
notebook
33
pyarrow
44
datasets

examples/quickstart/requirements_aws.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
zenml[server]==0.71.0
1+
zenml[server]==0.72.0
22
notebook
33
pyarrow
44
datasets

examples/quickstart/requirements_azure.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
zenml[server]==0.71.0
1+
zenml[server]==0.72.0
22
notebook
33
pyarrow
44
datasets

examples/quickstart/requirements_gcp.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
zenml[server]==0.71.0
1+
zenml[server]==0.72.0
22
notebook
33
pyarrow
44
datasets

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "zenml"
3-
version = "0.71.0"
3+
version = "0.72.0"
44
packages = [{ include = "zenml", from = "src" }]
55
description = "ZenML: Write production-ready ML code."
66
authors = ["ZenML GmbH <[email protected]>"]

src/zenml/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.71.0
1+
0.72.0

src/zenml/zen_server/deploy/helm/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: zenml
3-
version: "0.71.0"
3+
version: "0.72.0"
44
description: Open source MLOps framework for portable production ready ML pipelines
55
keywords:
66
- mlops

src/zenml/zen_server/deploy/helm/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ ZenML is an open-source MLOps framework designed to help you create robust, main
2020
To install the ZenML chart directly from Amazon ECR, use the following command:
2121

2222
```bash
23-
# example command for version 0.71.0
24-
helm install my-zenml oci://public.ecr.aws/zenml/zenml --version 0.71.0
23+
# example command for version 0.72.0
24+
helm install my-zenml oci://public.ecr.aws/zenml/zenml --version 0.72.0
2525
```
2626

2727
Note: Ensure you have OCI support enabled in your Helm client and that you are authenticated with Amazon ECR.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
"""Release [0.72.0].
2+
3+
Revision ID: 0.72.0
4+
Revises: a1237ba94fd8
5+
Create Date: 2025-01-10 13:28:34.773707
6+
7+
"""
8+
9+
# revision identifiers, used by Alembic.
10+
revision = "0.72.0"
11+
down_revision = "a1237ba94fd8"
12+
branch_labels = None
13+
depends_on = None
14+
15+
16+
def upgrade() -> None:
17+
"""Upgrade database schema and/or data, creating a new revision."""
18+
pass
19+
20+
21+
def downgrade() -> None:
22+
"""Downgrade database schema and/or data back to the previous revision."""
23+
pass

0 commit comments

Comments
 (0)