Skip to content

Commit

Permalink
Update version to 0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalbollu committed Mar 12, 2020
1 parent 5389974 commit fca9dbb
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
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.14.0
CORTEX_VERSION=0.14.1

dir=$1
image=$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.14.0
CORTEX_VERSION=0.14.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 @@ -17,7 +17,7 @@

set -euo pipefail

CORTEX_VERSION=0.14.0
CORTEX_VERSION=0.14.1

image=$1

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=master
CORTEX_VERSION=0.14.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 by following the instructions at https://www.cortex.dev/install, or update your Cortex manager image by modifying the value for \`image_manager\` in your cluster configuration file (e.g. cluster.yaml) and running \`cortex cluster update --config cluster.yaml\` (update other image paths in cluster.yaml as well if necessary)"
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 -e

CORTEX_VERSION=0.14.0
CORTEX_VERSION=0.14.1
EKSCTL_TIMEOUT=45m

arg1="$1"
Expand Down
2 changes: 1 addition & 1 deletion pkg/consts/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
package consts

var (
CortexVersion = "0.14.0" // CORTEX_VERSION
CortexVersion = "0.14.1" // CORTEX_VERSION
CortexVersionMinor = "0.14" // CORTEX_VERSION_MINOR

MaxClassesPerTrackerRequest = 20 // cloudwatch.GeMetricData can get up to 100 metrics per request, avoid multiple requests and have room for other stats
Expand Down
2 changes: 1 addition & 1 deletion pkg/workloads/cortex/client/cortex/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.14.0", # CORTEX_VERSION
"CortexAPIVersion": "0.14.1", # CORTEX_VERSION
"Authorization": "CortexAWS {}|{}".format(
self.aws_access_key_id, self.aws_secret_access_key
),
Expand Down
2 changes: 1 addition & 1 deletion pkg/workloads/cortex/client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name="cortex",
version="0.14.0", # CORTEX_VERSION
version="0.14.1", # CORTEX_VERSION
description="",
author="Cortex Labs",
author_email="[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion pkg/workloads/cortex/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

CORTEX_VERSION = "0.14.0"
CORTEX_VERSION = "0.14.1"

0 comments on commit fca9dbb

Please sign in to comment.