Skip to content

Commit 5638d76

Browse files
committed
Update version to 0.17.1
1 parent 2e326d0 commit 5638d76

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

build/build-image.sh

+1-1
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.17.0
22+
CORTEX_VERSION=0.17.1
2323

2424
slim="false"
2525
while [[ $# -gt 0 ]]; do

build/cli.sh

+1-1
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.17.0
22+
CORTEX_VERSION=0.17.1
2323

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

build/push-image.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
set -euo pipefail
1919

20-
CORTEX_VERSION=0.17.0
20+
CORTEX_VERSION=0.17.1
2121

2222
slim="false"
2323
while [[ $# -gt 0 ]]; do

manager/check_cortex_version.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
set -e
1818

19-
CORTEX_VERSION=0.17.0
19+
CORTEX_VERSION=0.17.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 by following the instructions at https://docs.cortex.dev/install, or update your Cortex manager image by modifying the value for \`image_manager\` in your cluster configuration file (e.g. cluster.yaml) and running \`cortex cluster configure --config cluster.yaml\` (update other image paths in cluster.yaml as well if necessary)"

manager/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
set -e
1818

19-
export CORTEX_VERSION=0.17.0
19+
export CORTEX_VERSION=0.17.1
2020
EKSCTL_TIMEOUT=45m
2121

2222
arg1="$1"

pkg/consts/consts.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
)
2525

2626
var (
27-
CortexVersion = "0.17.0" // CORTEX_VERSION
27+
CortexVersion = "0.17.1" // CORTEX_VERSION
2828
CortexVersionMinor = "0.17" // CORTEX_VERSION_MINOR
2929

3030
DefaultImagePythonPredictorCPU = defaultDockerImage("python-predictor-cpu")

pkg/workloads/cortex/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
CORTEX_VERSION = "0.17.0"
15+
CORTEX_VERSION = "0.17.1"

0 commit comments

Comments
 (0)