From ea6e4b3c4043a28208295d664f169e8caad4f5a3 Mon Sep 17 00:00:00 2001 From: Tudor Scurtu Date: Tue, 1 Nov 2022 09:30:14 -0700 Subject: [PATCH] Bump versions for 0.19.1 --- docs/changelog.md | 3 +++ helm/sematic/values.yaml | 2 +- sematic/versions.py | 2 +- sematic/wheel_version.bzl | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 48c7fa941..2fcd74cca 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,6 +4,9 @@ Lines for version numbers should always be formatted as `* MAJOR.MINOR.PATCH` with nothing else on the line. --> * HEAD +* [0.19.1](https://pypi.org/project/sematic/0.19.1/) + * [improvement] Various minor documentation improvements + * [bugfix] Fix various bugs which prevented restarting resolutions from the UI * [0.19.0](https://pypi.org/project/sematic/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 diff --git a/helm/sematic/values.yaml b/helm/sematic/values.yaml index 1c61853b6..1bb5bc091 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.19.0 + image: sematicai/sematic-server:v0.19.1 resources: replicas: 1 cpu: 500m diff --git a/sematic/versions.py b/sematic/versions.py index dfdf934a6..2ef32b24d 100644 --- a/sematic/versions.py +++ b/sematic/versions.py @@ -5,7 +5,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_version.bzl -CURRENT_VERSION = (0, 19, 0) +CURRENT_VERSION = (0, 19, 1) # Represents the smallest client version that works with the server # at the CURRENT_VERSION. Should be updated any time a breaking change diff --git a/sematic/wheel_version.bzl b/sematic/wheel_version.bzl index d31bba616..b36cdb2af 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.19.0" +wheel_version_string = "0.19.1"