Skip to content

Commit

Permalink
Bump versions for 0.19.0 (#277)
Browse files Browse the repository at this point in the history
  • Loading branch information
augray authored Oct 31, 2022
1 parent 2a11e8d commit 89c613c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
6 changes: 5 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion helm/sematic/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 2 additions & 3 deletions sematic/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
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.18.1"
wheel_version_string = "0.19.0"

0 comments on commit 89c613c

Please sign in to comment.