diff --git a/build/build-image.sh b/build/build-image.sh index 789d2aaa8e..f00297e120 100755 --- a/build/build-image.sh +++ b/build/build-image.sh @@ -19,7 +19,7 @@ set -euo pipefail ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. >/dev/null && pwd)" -CORTEX_VERSION=0.10.0 +CORTEX_VERSION=0.10.1 dir=$1 image=$2 diff --git a/build/cli.sh b/build/cli.sh index 7058a69bc0..b33933fe0e 100755 --- a/build/cli.sh +++ b/build/cli.sh @@ -19,7 +19,7 @@ set -euo pipefail ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. >/dev/null && pwd)" -CORTEX_VERSION=0.10.0 +CORTEX_VERSION=0.10.1 arg1=${1:-""} upload="false" diff --git a/build/push-image.sh b/build/push-image.sh index 0d71ddf6ff..dbb8b49513 100755 --- a/build/push-image.sh +++ b/build/push-image.sh @@ -17,7 +17,7 @@ set -euo pipefail -CORTEX_VERSION=0.10.0 +CORTEX_VERSION=0.10.1 image=$1 diff --git a/pkg/consts/consts.go b/pkg/consts/consts.go index 556e1cf93f..e1a3500d9d 100644 --- a/pkg/consts/consts.go +++ b/pkg/consts/consts.go @@ -17,7 +17,7 @@ limitations under the License. package consts var ( - CortexVersion = "0.10.0" // CORTEX_VERSION + CortexVersion = "0.10.1" // CORTEX_VERSION ContextCacheDir = "/mnt/context" EmptyDirMountPath = "/mnt" diff --git a/pkg/workloads/cortex/client/cortex/client.py b/pkg/workloads/cortex/client/cortex/client.py index f591e3334e..ad9749ecfd 100644 --- a/pkg/workloads/cortex/client/cortex/client.py +++ b/pkg/workloads/cortex/client/cortex/client.py @@ -44,7 +44,7 @@ def __init__(self, aws_access_key_id, aws_secret_access_key, operator_url): self.aws_access_key_id = aws_access_key_id self.aws_secret_access_key = aws_secret_access_key self.headers = { - "CortexAPIVersion": "0.10.0", # CORTEX_VERSION + "CortexAPIVersion": "0.10.1", # CORTEX_VERSION "Authorization": "CortexAWS {}|{}".format( self.aws_access_key_id, self.aws_secret_access_key ), diff --git a/pkg/workloads/cortex/client/setup.py b/pkg/workloads/cortex/client/setup.py index 9a339cfe9e..d499a939ba 100644 --- a/pkg/workloads/cortex/client/setup.py +++ b/pkg/workloads/cortex/client/setup.py @@ -16,7 +16,7 @@ setup( name="cortex", - version="0.10.0", # CORTEX_VERSION + version="0.10.1", # CORTEX_VERSION description="", author="Cortex Labs", author_email="dev@cortexlabs.com", diff --git a/pkg/workloads/cortex/consts.py b/pkg/workloads/cortex/consts.py index c4e9eb04b8..dff7ff8cc7 100644 --- a/pkg/workloads/cortex/consts.py +++ b/pkg/workloads/cortex/consts.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -CORTEX_VERSION = "0.10.0" +CORTEX_VERSION = "0.10.1"