Skip to content

Commit 83bdb8f

Browse files
committed
Update version to 0.30.1
1 parent 1b3433c commit 83bdb8f

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

build/build-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -euo pipefail
1919

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

22-
CORTEX_VERSION=0.30.0
22+
CORTEX_VERSION=0.30.1
2323

2424
image=$1
2525

build/cli.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -euo pipefail
1919

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

22-
CORTEX_VERSION=0.30.0
22+
CORTEX_VERSION=0.30.1
2323

2424
arg1=${1:-""}
2525
upload="false"

build/push-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
set -euo pipefail
1919

20-
CORTEX_VERSION=0.30.0
20+
CORTEX_VERSION=0.30.1
2121

2222
image=$1
2323

dev/registry.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17-
CORTEX_VERSION=0.30.0
17+
CORTEX_VERSION=0.30.1
1818

1919
set -eo pipefail
2020

manager/check_cortex_version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
set -e
1818

19-
CORTEX_VERSION=0.30.0
19+
CORTEX_VERSION=0.30.1
2020

2121
if [ "$CORTEX_VERSION" != "$CORTEX_CLI_VERSION" ]; then
2222
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)"

manager/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
set -eo pipefail
1818

19-
export CORTEX_VERSION=0.30.0
19+
export CORTEX_VERSION=0.30.1
2020
export CORTEX_VERSION_MINOR=0.30
2121
EKSCTL_TIMEOUT=45m
2222
mkdir /workspace

pkg/consts/consts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
)
2525

2626
var (
27-
CortexVersion = "0.30.0" // CORTEX_VERSION
27+
CortexVersion = "0.30.1" // CORTEX_VERSION
2828
CortexVersionMinor = "0.30" // CORTEX_VERSION_MINOR
2929

3030
SingleModelName = "_cortex_default"

pkg/cortex/client/cortex/consts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
# Change if PYTHONVERSION changes
1616
EXPECTED_PYTHON_VERSION = "3.6.9"
1717

18-
CORTEX_VERSION = "0.30.0" # CORTEX_VERSION
18+
CORTEX_VERSION = "0.30.1" # CORTEX_VERSION
1919
CORTEX_TELEMETRY_SENTRY_DSN = "https://[email protected]/1825326"
2020
CORTEX_TELEMETRY_SENTRY_ENVIRONMENT = "client"

pkg/cortex/client/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def run(self):
7676

7777
setup(
7878
name="cortex",
79-
version="0.30.0", # CORTEX_VERSION
79+
version="0.30.1", # CORTEX_VERSION
8080
description="Model serving at scale",
8181
author="cortex.dev",
8282
author_email="[email protected]",

pkg/cortex/serve/init/bootloader.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
set -e
1818

1919
# CORTEX_VERSION
20-
export EXPECTED_CORTEX_VERSION=0.30.0
20+
export EXPECTED_CORTEX_VERSION=0.30.1
2121

2222
if [ "$CORTEX_VERSION" != "$EXPECTED_CORTEX_VERSION" ]; then
2323
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/"

pkg/cortex/serve/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
setup(
2525
name="cortex-internal",
26-
version="0.30.0", # CORTEX_VERSION
26+
version="0.30.1", # CORTEX_VERSION
2727
description="Internal package for Cortex containers",
2828
author="cortex.dev",
2929
author_email="[email protected]",

test/e2e/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
setup(
2626
name="e2e",
27-
version="0.30.0", # CORTEX_VERSION
27+
version="0.30.1", # CORTEX_VERSION
2828
packages=find_packages(exclude=["tests"]),
2929
url="https://github.com/cortexlabs/cortex",
3030
license="Apache License 2.0",

0 commit comments

Comments
 (0)