From 89c613ce7050e4f6b5b92f8ce94478b6c068ae19 Mon Sep 17 00:00:00 2001 From: augray Date: Mon, 31 Oct 2022 15:25:11 -0700 Subject: [PATCH] Bump versions for 0.19.0 (#277) --- docs/changelog.md | 6 +++++- helm/sematic/values.yaml | 2 +- sematic/versions.py | 5 ++--- sematic/wheel_version.bzl | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index ff75baa57..16095d776 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,8 +4,12 @@ Lines for version numbers should always be formatted as `* MAJOR.MINOR.PATCH` with nothing else on the line. --> * HEAD - * [feature] Support for easier testing of Sematic pipelines +* 0.19.0 * [feature] Expose Kubernetes infra failures in the Run panel + * [feature] Enable restarting resolutions from the command line from a particular run, using different code + * [feature] Enable restarting resolutions from the UI from a particular run + * [feature] Support for easier testing of Sematic pipelines + * [bugfix] Fix max parallelism for detached mode * 0.18.1 * [bugfix] Remove SQLAlchemy model dependencies from Python migrations * [bugfix] Enable usage of multiple base images in detached mode diff --git a/helm/sematic/values.yaml b/helm/sematic/values.yaml index 4070ec24f..1c61853b6 100644 --- a/helm/sematic/values.yaml +++ b/helm/sematic/values.yaml @@ -3,7 +3,7 @@ aws: enabled: true storage_bucket: sematic-dev server: - image: sematicai/sematic-server:v0.18.1 + image: sematicai/sematic-server:v0.19.0 resources: replicas: 1 cpu: 500m diff --git a/sematic/versions.py b/sematic/versions.py index 1335297a4..dfdf934a6 100644 --- a/sematic/versions.py +++ b/sematic/versions.py @@ -5,13 +5,12 @@ # 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_version.bzl -CURRENT_VERSION = (0, 18, 1) +CURRENT_VERSION = (0, 19, 0) # Represents the smallest client version that works with the server # at the CURRENT_VERSION. Should be updated any time a breaking change # is made to the web API. -# TODO: Bump for https://github.com/sematic-ai/sematic/pull/269 -MIN_CLIENT_SERVER_SUPPORTS = (0, 18, 0) +MIN_CLIENT_SERVER_SUPPORTS = (0, 19, 0) def version_as_string(version: typing.Tuple[int, int, int]) -> str: diff --git a/sematic/wheel_version.bzl b/sematic/wheel_version.bzl index 2b7409b20..d31bba616 100644 --- a/sematic/wheel_version.bzl +++ b/sematic/wheel_version.bzl @@ -2,4 +2,4 @@ # changelog.md. # This is the version that will be attached to the # wheel that bazel builds for sematic. -wheel_version_string = "0.18.1" +wheel_version_string = "0.19.0"