Skip to content

Commit dbb2f7f

Browse files
committed
Update version to 0.42.1
1 parent ab5f208 commit dbb2f7f

File tree

14 files changed

+14
-14
lines changed

14 files changed

+14
-14
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.42.0
20+
CORTEX_VERSION=0.42.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.42.0
22+
CORTEX_VERSION=0.42.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.42.0
22+
CORTEX_VERSION=0.42.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.42.0
22+
CORTEX_VERSION=0.42.1
2323

2424
host_primary=$1
2525
host_backup=$2

dev/export_images.sh

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

2424
# CORTEX_VERSION
25-
cortex_version=0.42.0
25+
cortex_version=0.42.1
2626

2727
# user set variables
2828
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.42.0
17+
CORTEX_VERSION=0.42.1
1818

1919
set -eo pipefail
2020

docs/clusters/advanced/self-hosted-images.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Clone the Cortex repo using the release tag corresponding to your version (which
1919
<!-- CORTEX_VERSION_README -->
2020

2121
```bash
22-
export CORTEX_VERSION=0.42.0
22+
export CORTEX_VERSION=0.42.1
2323
git clone --depth 1 --branch v$CORTEX_VERSION https://github.com/cortexlabs/cortex.git
2424
```
2525

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.42.0
19+
CORTEX_VERSION=0.42.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.42.0
19+
export CORTEX_VERSION=0.42.1
2020
export CORTEX_VERSION_MINOR=0.42
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.42.0" // CORTEX_VERSION
27+
CortexVersion = "0.42.1" // CORTEX_VERSION
2828
CortexVersionMinor = "0.42" // 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.42.0" # CORTEX_VERSION
24+
__version__ = "0.42.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.42.0" # CORTEX_VERSION
16+
CORTEX_VERSION = "0.42.1" # CORTEX_VERSION
1717
CORTEX_TELEMETRY_SENTRY_DSN = "https://5cea3d2d67194d028f7191fcc6ebca14@sentry.io/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.42.0", # CORTEX_VERSION
82+
version="0.42.1", # CORTEX_VERSION
8383
description="Cost-effective serverless computing",
8484
author="cortex.dev",
8585
author_email="dev@cortex.dev",

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.42.0", # CORTEX_VERSION
27+
version="0.42.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)