From 3302ee3a932622c892bae5c2f35f7fce2557fe12 Mon Sep 17 00:00:00 2001 From: augray Date: Tue, 29 Aug 2023 10:26:29 -0700 Subject: [PATCH] release --- README.md | 2 +- README.rst | 4 ++-- docs/changelog.md | 9 ++++++++- helm/sematic-server/Chart.yaml | 4 ++-- sematic/versions.py | 2 +- sematic/wheel_constants.bzl | 2 +- 6 files changed, 15 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index b9c3e823..7322b09b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@

Build ML pipelines with only Python, run on your laptop, or in the cloud.

-![PyPI](https://img.shields.io/pypi/v/sematic/0.34.0?style=for-the-badge) +![PyPI](https://img.shields.io/pypi/v/sematic/0.34.1?style=for-the-badge) [![CircleCI](https://img.shields.io/circleci/build/github/sematic-ai/sematic/main?label=CircleCI&style=for-the-badge&token=60d1953bfee5b6bf8201f8e84a10eaa5bf5622fe)](https://app.circleci.com/pipelines/github/sematic-ai/sematic?branch=main&filter=all) ![PyPI - License](https://img.shields.io/pypi/l/sematic?style=for-the-badge) [![Python 3.8](https://img.shields.io/badge/Python-3.8-blue?style=for-the-badge&logo=none)](https://python.org) diff --git a/README.rst b/README.rst index d356888f..594a6478 100644 --- a/README.rst +++ b/README.rst @@ -6,8 +6,8 @@ -.. image:: https://img.shields.io/pypi/v/sematic/0.34.0?style=for-the-badge - :target: https://img.shields.io/pypi/v/sematic/0.34.0?style=for-the-badge +.. image:: https://img.shields.io/pypi/v/sematic/0.34.1?style=for-the-badge + :target: https://img.shields.io/pypi/v/sematic/0.34.1?style=for-the-badge :alt: PyPI diff --git a/docs/changelog.md b/docs/changelog.md index 51ff1c06..9204a081 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -5,7 +5,14 @@ Lines for version numbers should always be formatted as with nothing else on the line. --> * HEAD -* [0.34.0](https://pypi.org/project/sematic/0.33.0/) +* [0.34.1](https://pypi.org/project/sematic/0.34.1/) + * [feature] Make bazel image generation macro configurable + * [improvement] Various improvements to `sematic version` + * [improvement] Speed up cleanup for certain pipeline cancellations/failures + * [bugfix] Fix bug with displaying live logs in the new dashboard + * [bugfix] Enable proper type-checking for `list`, `set` in python >=3.10 + * [bugfix] Remove possibility for "payload too large" with mnist example +* [0.34.0](https://pypi.org/project/sematic/0.34.0/) * [feature] New API to trigger a Pipeline rerun with Artifact ID overrides for the root run function's input parameters. * [improvement] Adjust header menu order to better align with user habits diff --git a/helm/sematic-server/Chart.yaml b/helm/sematic-server/Chart.yaml index b5d81838..0197aba7 100644 --- a/helm/sematic-server/Chart.yaml +++ b/helm/sematic-server/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: sematic-server description: Sematic AI Server type: application -version: 1.1.15 -appVersion: v0.34.0 +version: 1.1.16 +appVersion: v0.34.1 maintainers: - name: sematic-ai url: https://github.com/sematic-ai/sematic/ diff --git a/sematic/versions.py b/sematic/versions.py index ca7f6b01..4b1e255f 100644 --- a/sematic/versions.py +++ b/sematic/versions.py @@ -9,7 +9,7 @@ # the sdk. Should be bumped any time a release is made. Should be set # to whatever is the version after the most recent one in changelog.md, # as well as the version for the sematic wheel in wheel_constants.bzl -CURRENT_VERSION = (0, 34, 0) +CURRENT_VERSION = (0, 34, 1) # TO DEPRECATE # 0.X.X: diff --git a/sematic/wheel_constants.bzl b/sematic/wheel_constants.bzl index f2159672..67dcbe2d 100644 --- a/sematic/wheel_constants.bzl +++ b/sematic/wheel_constants.bzl @@ -2,7 +2,7 @@ # changelog.md. # This is the version that will be attached to the # wheel that bazel builds for sematic. -wheel_version_string = "0.34.0" +wheel_version_string = "0.34.1" wheel_author = "Sematic AI, Inc." wheel_author_email = "support@sematic.dev"