Skip to content

Commit fca9dbb

Browse files
committed
Update version to 0.14.1
1 parent 5389974 commit fca9dbb

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
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.14.0
22+
CORTEX_VERSION=0.14.1
2323

2424
dir=$1
2525
image=$2

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.14.0
22+
CORTEX_VERSION=0.14.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.14.0
20+
CORTEX_VERSION=0.14.1
2121

2222
image=$1
2323

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=master
19+
CORTEX_VERSION=0.14.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://www.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 update --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 -e
1818

19-
CORTEX_VERSION=0.14.0
19+
CORTEX_VERSION=0.14.1
2020
EKSCTL_TIMEOUT=45m
2121

2222
arg1="$1"

pkg/consts/consts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package consts
1818

1919
var (
20-
CortexVersion = "0.14.0" // CORTEX_VERSION
20+
CortexVersion = "0.14.1" // CORTEX_VERSION
2121
CortexVersionMinor = "0.14" // CORTEX_VERSION_MINOR
2222

2323
MaxClassesPerTrackerRequest = 20 // cloudwatch.GeMetricData can get up to 100 metrics per request, avoid multiple requests and have room for other stats

pkg/workloads/cortex/client/cortex/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def __init__(self, aws_access_key_id, aws_secret_access_key, operator_url):
4444
self.aws_access_key_id = aws_access_key_id
4545
self.aws_secret_access_key = aws_secret_access_key
4646
self.headers = {
47-
"CortexAPIVersion": "0.14.0", # CORTEX_VERSION
47+
"CortexAPIVersion": "0.14.1", # CORTEX_VERSION
4848
"Authorization": "CortexAWS {}|{}".format(
4949
self.aws_access_key_id, self.aws_secret_access_key
5050
),

pkg/workloads/cortex/client/setup.py

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

1717
setup(
1818
name="cortex",
19-
version="0.14.0", # CORTEX_VERSION
19+
version="0.14.1", # CORTEX_VERSION
2020
description="",
2121
author="Cortex Labs",
2222
author_email="dev@cortexlabs.com",

pkg/workloads/cortex/consts.py

Lines changed: 1 addition & 1 deletion
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.14.0"
15+
CORTEX_VERSION = "0.14.1"

0 commit comments

Comments
 (0)