Skip to content

Commit

Permalink
Update version to 0.39.1
Browse files Browse the repository at this point in the history
  • Loading branch information
deliahu committed Jul 21, 2021
1 parent 0796f2f commit e87d9b3
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion build/amend-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

set -euo pipefail

CORTEX_VERSION=0.39.0
CORTEX_VERSION=0.39.1

host_primary=$1
host_backup=$2
Expand Down
2 changes: 1 addition & 1 deletion build/build-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set -euo pipefail

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

CORTEX_VERSION=0.39.0
CORTEX_VERSION=0.39.1

host_primary=$1
host_backup=$2
Expand Down
2 changes: 1 addition & 1 deletion build/cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set -euo pipefail

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

CORTEX_VERSION=0.39.0
CORTEX_VERSION=0.39.1

arg1=${1:-""}
upload="false"
Expand Down
2 changes: 1 addition & 1 deletion build/push-image.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set -euo pipefail

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

CORTEX_VERSION=0.39.0
CORTEX_VERSION=0.39.1

host_primary=$1
host_backup=$2
Expand Down
2 changes: 1 addition & 1 deletion dev/export_images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ set -euo pipefail
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. >/dev/null && pwd)"

# CORTEX_VERSION
cortex_version=0.39.0
cortex_version=0.39.1

# user set variables
ecr_region=$1
Expand Down
2 changes: 1 addition & 1 deletion dev/registry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

CORTEX_VERSION=0.39.0
CORTEX_VERSION=0.39.1

set -eo pipefail

Expand Down
2 changes: 1 addition & 1 deletion manager/check_cortex_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

set -e

CORTEX_VERSION=0.39.0
CORTEX_VERSION=0.39.1

if [ "$CORTEX_VERSION" != "$CORTEX_CLI_VERSION" ]; then
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"
Expand Down
2 changes: 1 addition & 1 deletion manager/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

set -eo pipefail

export CORTEX_VERSION=0.39.0
export CORTEX_VERSION=0.39.1
export CORTEX_VERSION_MINOR=0.39
EKSCTL_CLUSTER_TIMEOUT=45m
EKSCTL_NODEGROUP_TIMEOUT=30m
Expand Down
2 changes: 1 addition & 1 deletion pkg/consts/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
)

var (
CortexVersion = "0.39.0" // CORTEX_VERSION
CortexVersion = "0.39.1" // CORTEX_VERSION
CortexVersionMinor = "0.39" // CORTEX_VERSION_MINOR

DefaultNamespace = "default"
Expand Down
2 changes: 1 addition & 1 deletion python/client/cortex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from cortex.telemetry import sentry_wrapper


__version__ = "0.39.0" # CORTEX_VERSION
__version__ = "0.39.1" # CORTEX_VERSION


@sentry_wrapper
Expand Down
2 changes: 1 addition & 1 deletion python/client/cortex/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
# limitations under the License.


CORTEX_VERSION = "0.39.0" # CORTEX_VERSION
CORTEX_VERSION = "0.39.1" # CORTEX_VERSION
CORTEX_TELEMETRY_SENTRY_DSN = "https://[email protected]/1825326"
CORTEX_TELEMETRY_SENTRY_ENVIRONMENT = "client"
2 changes: 1 addition & 1 deletion python/client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def run(self):

setup(
name="cortex",
version="0.39.0", # CORTEX_VERSION
version="0.39.1", # CORTEX_VERSION
description="Cost-effective serverless computing",
author="cortex.dev",
author_email="[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setup(
name="e2e",
version="0.39.0", # CORTEX_VERSION
version="0.39.1", # CORTEX_VERSION
packages=find_packages(exclude=["tests"]),
url="https://github.com/cortexlabs/cortex",
license="Apache License 2.0",
Expand Down

0 comments on commit e87d9b3

Please sign in to comment.