Skip to content

Commit

Permalink
Update version to 0.31.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalbollu committed Mar 22, 2021
1 parent 4a5715f commit 98a0681
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion build/build-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set -euo pipefail

ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. >/dev/null && pwd)"

CORTEX_VERSION=0.31.0
CORTEX_VERSION=0.31.1

image=$1

Expand Down
2 changes: 1 addition & 1 deletion build/cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set -euo pipefail

ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. >/dev/null && pwd)"

CORTEX_VERSION=0.31.0
CORTEX_VERSION=0.31.1

arg1=${1:-""}
upload="false"
Expand Down
2 changes: 1 addition & 1 deletion build/push-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

set -euo pipefail

CORTEX_VERSION=0.31.0
CORTEX_VERSION=0.31.1

image=$1

Expand Down
2 changes: 1 addition & 1 deletion dev/registry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

CORTEX_VERSION=0.31.0
CORTEX_VERSION=0.31.1

set -eo pipefail

Expand Down
2 changes: 1 addition & 1 deletion manager/check_cortex_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

set -e

CORTEX_VERSION=0.31.0
CORTEX_VERSION=0.31.1

if [ "$CORTEX_VERSION" != "$CORTEX_CLI_VERSION" ]; then
echo "error: your CLI version ($CORTEX_CLI_VERSION) doesn't match your Cortex manager image version ($CORTEX_VERSION); please update your CLI (pip install cortex==$CORTEX_VERSION), or update your Cortex manager image by modifying the value for \`image_manager\` in your cluster configuration file and running \`cortex cluster configure --config cluster.yaml\` (update other image paths in cluster.yaml as well if necessary)"
Expand Down
2 changes: 1 addition & 1 deletion manager/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

set -eo pipefail

export CORTEX_VERSION=0.31.0
export CORTEX_VERSION=0.31.1
export CORTEX_VERSION_MINOR=0.31
EKSCTL_TIMEOUT=45m
mkdir /workspace
Expand Down
2 changes: 1 addition & 1 deletion pkg/consts/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
)

var (
CortexVersion = "0.31.0" // CORTEX_VERSION
CortexVersion = "0.31.1" // CORTEX_VERSION
CortexVersionMinor = "0.31" // CORTEX_VERSION_MINOR

SingleModelName = "_cortex_default"
Expand Down
2 changes: 1 addition & 1 deletion pkg/cortex/client/cortex/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
# Change if PYTHONVERSION changes
EXPECTED_PYTHON_VERSION = "3.6.9"

CORTEX_VERSION = "0.31.0" # CORTEX_VERSION
CORTEX_VERSION = "0.31.1" # CORTEX_VERSION
CORTEX_TELEMETRY_SENTRY_DSN = "https://5cea3d2d67194d028f7191fcc6ebca14@sentry.io/1825326"
CORTEX_TELEMETRY_SENTRY_ENVIRONMENT = "client"
2 changes: 1 addition & 1 deletion pkg/cortex/client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def run(self):

setup(
name="cortex",
version="0.31.0", # CORTEX_VERSION
version="0.31.1", # CORTEX_VERSION
description="Deploy machine learning models to production",
author="cortex.dev",
author_email="dev@cortex.dev",
Expand Down
2 changes: 1 addition & 1 deletion pkg/cortex/serve/init/bootloader.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
set -e

# CORTEX_VERSION
export EXPECTED_CORTEX_VERSION=0.31.0
export EXPECTED_CORTEX_VERSION=0.31.1

if [ "$CORTEX_VERSION" != "$EXPECTED_CORTEX_VERSION" ]; then
echo "error: your Cortex operator version ($CORTEX_VERSION) doesn't match your predictor image version ($EXPECTED_CORTEX_VERSION); please update your predictor image by modifying the \`image\` field in your API configuration file (e.g. cortex.yaml) and re-running \`cortex deploy\`, or update your cluster by following the instructions at https://docs.cortex.dev/"
Expand Down
2 changes: 1 addition & 1 deletion pkg/cortex/serve/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

setup(
name="cortex-internal",
version="0.31.0", # CORTEX_VERSION
version="0.31.1", # CORTEX_VERSION
description="Internal package for Cortex containers",
author="cortex.dev",
author_email="dev@cortex.dev",
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name="e2e",
version="0.31.0", # CORTEX_VERSION
version="0.31.1", # CORTEX_VERSION
packages=find_packages(exclude=["tests"]),
url="https://github.com/cortexlabs/cortex",
license="Apache License 2.0",
Expand Down

0 comments on commit 98a0681

Please sign in to comment.