Skip to content

Commit e87d9b3

Browse files
committed
Update version to 0.39.1
1 parent 0796f2f commit e87d9b3

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

build/amend-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.39.0
20+
CORTEX_VERSION=0.39.1
2121

2222
host_primary=$1
2323
host_backup=$2

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.39.0
22+
CORTEX_VERSION=0.39.1
2323

2424
host_primary=$1
2525
host_backup=$2

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.39.0
22+
CORTEX_VERSION=0.39.1
2323

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

build/push-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.39.0
22+
CORTEX_VERSION=0.39.1
2323

2424
host_primary=$1
2525
host_backup=$2

dev/export_images.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ set -euo pipefail
2020
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. >/dev/null && pwd)"
2121

2222
# CORTEX_VERSION
23-
cortex_version=0.39.0
23+
cortex_version=0.39.1
2424

2525
# user set variables
2626
ecr_region=$1

dev/registry.sh

+1-1
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.39.0
17+
CORTEX_VERSION=0.39.1
1818

1919
set -eo pipefail
2020

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.39.0
19+
CORTEX_VERSION=0.39.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) to match the version of your Cortex manager image"

manager/install.sh

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

1717
set -eo pipefail
1818

19-
export CORTEX_VERSION=0.39.0
19+
export CORTEX_VERSION=0.39.1
2020
export CORTEX_VERSION_MINOR=0.39
2121
EKSCTL_CLUSTER_TIMEOUT=45m
2222
EKSCTL_NODEGROUP_TIMEOUT=30m

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.39.0" // CORTEX_VERSION
27+
CortexVersion = "0.39.1" // CORTEX_VERSION
2828
CortexVersionMinor = "0.39" // CORTEX_VERSION_MINOR
2929

3030
DefaultNamespace = "default"

python/client/cortex/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from cortex.telemetry import sentry_wrapper
2222

2323

24-
__version__ = "0.39.0" # CORTEX_VERSION
24+
__version__ = "0.39.1" # CORTEX_VERSION
2525

2626

2727
@sentry_wrapper

python/client/cortex/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
# limitations under the License.
1414

1515

16-
CORTEX_VERSION = "0.39.0" # CORTEX_VERSION
16+
CORTEX_VERSION = "0.39.1" # CORTEX_VERSION
1717
CORTEX_TELEMETRY_SENTRY_DSN = "https://[email protected]/1825326"
1818
CORTEX_TELEMETRY_SENTRY_ENVIRONMENT = "client"

python/client/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def run(self):
7979

8080
setup(
8181
name="cortex",
82-
version="0.39.0", # CORTEX_VERSION
82+
version="0.39.1", # CORTEX_VERSION
8383
description="Cost-effective serverless computing",
8484
author="cortex.dev",
8585
author_email="[email protected]",

test/e2e/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
setup(
2626
name="e2e",
27-
version="0.39.0", # CORTEX_VERSION
27+
version="0.39.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)