Skip to content

Commit

Permalink
Release 0.34.0 (#1038)
Browse files Browse the repository at this point in the history
Release v0.34.0

Add a small front-end improvement to prevent exception message from
blinking during graph update.
  • Loading branch information
chance-sematic authored Aug 15, 2023
1 parent 23bd529 commit 13e1925
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<h3 align="center">Build ML pipelines with only Python, run on your laptop, or in the cloud.</h3>

![PyPI](https://img.shields.io/pypi/v/sematic/0.33.0?style=for-the-badge)
![PyPI](https://img.shields.io/pypi/v/sematic/0.34.0?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)
Expand Down
7 changes: 7 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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/)
* [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
* [improvement] Restyle the state icons to make it more obvious
* [improvement] Better error message for Ray cluster from non-standalone function
* [improvement] Make runner reentrant
* [0.33.0](https://pypi.org/project/sematic/0.33.0/)
* [feature] Enable the Grafana plugin in the new UI
* [feature] Show user privacy in the new UI
Expand Down
4 changes: 2 additions & 2 deletions helm/sematic-server/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: sematic-server
description: Sematic AI Server
type: application
version: 1.1.14
appVersion: v0.33.0
version: 1.1.15
appVersion: v0.34.0
maintainers:
- name: sematic-ai
url: https://github.com/sematic-ai/sematic/
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { ArtifactPaneContainer } from "src/pages/RunDetails/artifacts/common";

function OutputPane() {
const { selectedRun } = useRunDetailsSelectionContext();
const { graph, isGraphLoading } = useRootRunContext();
const { graph } = useRootRunContext();

const outputArtifact = useMemo(() => {
if (!graph) {
Expand Down Expand Up @@ -39,7 +39,7 @@ function OutputPane() {
}, [graph, selectedRun?.id]);

const exceptions = useMemo(() => {
if (isGraphLoading) {
if (!selectedRun) {
return null;
}
const { future_state, external_exception_metadata_json, exception_metadata_json } = selectedRun!;
Expand All @@ -57,7 +57,7 @@ function OutputPane() {
}

return null;
}, [isGraphLoading, selectedRun]);
}, [selectedRun]);

const { future_state } = selectedRun! || {};

Expand Down
2 changes: 1 addition & 1 deletion sematic/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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, 33, 0)
CURRENT_VERSION = (0, 34, 0)

# TO DEPRECATE
# 0.X.X:
Expand Down
2 changes: 1 addition & 1 deletion sematic/wheel_constants.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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.33.0"
wheel_version_string = "0.34.0"

wheel_author = "Sematic AI, Inc."
wheel_author_email = "support@sematic.dev"
Expand Down

0 comments on commit 13e1925

Please sign in to comment.