From d606e1d0a661970b4e31937bc6ceae2ceb213ba2 Mon Sep 17 00:00:00 2001 From: augray Date: Mon, 19 Sep 2022 10:36:18 -0700 Subject: [PATCH] Release 0.14.0 --- developer-docs/README.md | 2 +- docs/changelog.md | 1 + helm/sematic/values.yaml | 2 +- sematic/versions.py | 2 +- sematic/wheel_version.bzl | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/developer-docs/README.md b/developer-docs/README.md index 03af053a..5a423859 100644 --- a/developer-docs/README.md +++ b/developer-docs/README.md @@ -16,7 +16,7 @@ access to the PyPi repo, which is limited to employees of Sematic. and use a virtual env to test: ``` -pip install sematic +pip install sematic start sematic run examples/mnist/pytorch ``` diff --git a/docs/changelog.md b/docs/changelog.md index 5a22ec7a..35bda6e1 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -4,6 +4,7 @@ Lines for version numbers should always be formatted as `* MAJOR.MINOR.PATCH` with nothing else on the line. --> * HEAD +* 0.14.0 * [feature] BREAKING CHANGE: For cloud execution, users submitting pipelines no longer need Kubernetes access. Users who have deployed the Sematic server using docker will need to either (a) switch to deploying the server on Kubernetes or diff --git a/helm/sematic/values.yaml b/helm/sematic/values.yaml index 0e7b897b..cdd6cff5 100644 --- a/helm/sematic/values.yaml +++ b/helm/sematic/values.yaml @@ -1,6 +1,6 @@ namespace: default server: - image: sematicai/sematic-server:v0.13.0 + image: sematicai/sematic-server:v0.14.0 resources: replicas: 1 cpu: 500m diff --git a/sematic/versions.py b/sematic/versions.py index 3329897a..94e56ab6 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, 13, 0) +CURRENT_VERSION = (0, 14, 0) # 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 4106cead..0a88560b 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.13.0" \ No newline at end of file +wheel_version_string = "0.14.0" \ No newline at end of file