diff --git a/build/build-image.sh b/build/build-image.sh index 5e77d95e08..f73308d974 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.11.0 +CORTEX_VERSION=0.11.1 dir=$1 image=$2 diff --git a/build/cli.sh b/build/cli.sh index 6b082e2f89..cb649e0704 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.11.0 +CORTEX_VERSION=0.11.1 arg1=${1:-""} upload="false" diff --git a/build/push-image.sh b/build/push-image.sh index 590aed8502..433a272919 100755 --- a/build/push-image.sh +++ b/build/push-image.sh @@ -17,7 +17,7 @@ set -euo pipefail -CORTEX_VERSION=0.11.0 +CORTEX_VERSION=0.11.1 image=$1 diff --git a/pkg/consts/consts.go b/pkg/consts/consts.go index 86df3d4283..65fd8676be 100644 --- a/pkg/consts/consts.go +++ b/pkg/consts/consts.go @@ -17,7 +17,7 @@ limitations under the License. package consts var ( - CortexVersion = "0.11.0" // CORTEX_VERSION + CortexVersion = "0.11.1" // CORTEX_VERSION CortexVersionMinor = "0.11" // CORTEX_VERSION_MINOR ContextCacheDir = "/mnt/context" diff --git a/pkg/workloads/cortex/client/cortex/client.py b/pkg/workloads/cortex/client/cortex/client.py index 6683757e0d..8b0b3f4bed 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.11.0", # CORTEX_VERSION + "CortexAPIVersion": "0.11.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 b21ac4c036..5aa60ad974 100644 --- a/pkg/workloads/cortex/client/setup.py +++ b/pkg/workloads/cortex/client/setup.py @@ -16,7 +16,7 @@ setup( name="cortex", - version="0.11.0", # CORTEX_VERSION + version="0.11.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 9064b36ded..d5373038a5 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.11.0" +CORTEX_VERSION = "0.11.1"