Skip to content

Commit

Permalink
Release 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
augray committed Sep 19, 2022
1 parent acb00ab commit d606e1d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion developer-docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <wheel path>
sematic start
sematic run examples/mnist/pytorch
```
Expand Down
1 change: 1 addition & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion helm/sematic/values.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion sematic/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion sematic/wheel_version.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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"
wheel_version_string = "0.14.0"

0 comments on commit d606e1d

Please sign in to comment.