From c24c7a2de43ebbc7a751a56fe5ca5fe22765cdd6 Mon Sep 17 00:00:00 2001 From: David Eliahu Date: Wed, 29 Jan 2020 12:37:43 -0800 Subject: [PATCH] Update version to 0.13.1 --- build/build-image.sh | 2 +- build/cli.sh | 2 +- build/push-image.sh | 2 +- manager/install.sh | 2 +- pkg/consts/consts.go | 2 +- pkg/workloads/cortex/client/cortex/client.py | 2 +- pkg/workloads/cortex/client/setup.py | 2 +- pkg/workloads/cortex/consts.py | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/build/build-image.sh b/build/build-image.sh index 8f8ca1a3ea..b27e34b73b 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.13.0 +CORTEX_VERSION=0.13.1 dir=$1 image=$2 diff --git a/build/cli.sh b/build/cli.sh index 9eede90c9f..0f565bbcaa 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.13.0 +CORTEX_VERSION=0.13.1 arg1=${1:-""} upload="false" diff --git a/build/push-image.sh b/build/push-image.sh index 95a1579eb8..80d4b04f83 100755 --- a/build/push-image.sh +++ b/build/push-image.sh @@ -17,7 +17,7 @@ set -euo pipefail -CORTEX_VERSION=0.13.0 +CORTEX_VERSION=0.13.1 image=$1 diff --git a/manager/install.sh b/manager/install.sh index 28300c4136..045bc49990 100755 --- a/manager/install.sh +++ b/manager/install.sh @@ -16,7 +16,7 @@ set -e -CORTEX_VERSION=0.13.0 +CORTEX_VERSION=0.13.1 EKSCTL_TIMEOUT=45m arg1="$1" diff --git a/pkg/consts/consts.go b/pkg/consts/consts.go index c90febe103..fe6c0e03c5 100644 --- a/pkg/consts/consts.go +++ b/pkg/consts/consts.go @@ -17,7 +17,7 @@ limitations under the License. package consts var ( - CortexVersion = "0.13.0" // CORTEX_VERSION + CortexVersion = "0.13.1" // CORTEX_VERSION CortexVersionMinor = "0.13" // CORTEX_VERSION_MINOR MaxClassesPerTrackerRequest = 20 // cloudwatch.GeMetricData can get up to 100 metrics per request, avoid multiple requests and have room for other stats diff --git a/pkg/workloads/cortex/client/cortex/client.py b/pkg/workloads/cortex/client/cortex/client.py index c795c15247..042692590d 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.13.0", # CORTEX_VERSION + "CortexAPIVersion": "0.13.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 0f56b70d36..1a6429ae1a 100644 --- a/pkg/workloads/cortex/client/setup.py +++ b/pkg/workloads/cortex/client/setup.py @@ -16,7 +16,7 @@ setup( name="cortex", - version="0.13.0", # CORTEX_VERSION + version="0.13.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 a749eb2581..bab2b62c17 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.13.0" +CORTEX_VERSION = "0.13.1"