Skip to content

Commit

Permalink
Prepare release 0.47.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexejPenner authored and stefannica committed Nov 14, 2023
1 parent 318bcfd commit a9b634c
Show file tree
Hide file tree
Showing 7 changed files with 43 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
<a href="https://www.zenml.io/company#team">Meet the Team</a>
<br />
<br />
🎉 Version 0.46.1 is out. Check out the release notes
🎉 Version 0.47.0 is out. Check out the release notes
<a href="https://github.com/zenml-io/zenml/releases">here</a>.
<br />
<br />
Expand Down
13 changes: 13 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
<!-- markdown-link-check-disable -->
# 0.47.0
This release fixes a bug that was introduced in 0.46.1 where the default user
was made inaccessible and was inadvertently duplicated. This release rescues
the original user and renames the duplicate.

## What's Changed
* Create tags table by @avishniakov in https://github.com/zenml-io/zenml/pull/2036
* Bring dashboard back to the release by @avishniakov in https://github.com/zenml-io/zenml/pull/2046
* Fix duplicate default user by @stefannica in https://github.com/zenml-io/zenml/pull/2045


**Full Changelog**: https://github.com/zenml-io/zenml/compare/0.46.1...tmp

# 0.46.1

The 0.46.1 release introduces support for Service Accounts and API Keys that
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.46.1"
version = "0.47.0"
packages = [{ include = "zenml", from = "src" }]
description = "ZenML: Write production-ready ML code."
authors = ["ZenML GmbH <info@zenml.io>"]
Expand Down
2 changes: 1 addition & 1 deletion src/zenml/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.46.1
0.47.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.46.1"
version: "0.47.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.46.0
helm install my-zenml oci://public.ecr.aws/zenml/zenml --version 0.46.0
# example command for version 0.47.0
helm install my-zenml oci://public.ecr.aws/zenml/zenml --version 0.47.0
```

Note: Ensure you have OCI support enabled in your Helm client and that you are authenticated with Amazon ECR.
Expand Down
24 changes: 24 additions & 0 deletions src/zenml/zen_stores/migrations/versions/0.47.0_release.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
"""Release [0.47.0].
Revision ID: 0.47.0
Revises: 722392c91006
Create Date: 2023-11-14 16:10:13.251399
"""


# revision identifiers, used by Alembic.
revision = "0.47.0"
down_revision = "722392c91006"
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 a9b634c

Please sign in to comment.