Skip to content

Commit c24c7a2

Browse files
committed
Update version to 0.13.1
1 parent 58b17d3 commit c24c7a2

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

Diff for: build/build-image.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -euo pipefail
1919

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

22-
CORTEX_VERSION=0.13.0
22+
CORTEX_VERSION=0.13.1
2323

2424
dir=$1
2525
image=$2

Diff for: build/cli.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -euo pipefail
1919

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

22-
CORTEX_VERSION=0.13.0
22+
CORTEX_VERSION=0.13.1
2323

2424
arg1=${1:-""}
2525
upload="false"

Diff for: build/push-image.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
set -euo pipefail
1919

20-
CORTEX_VERSION=0.13.0
20+
CORTEX_VERSION=0.13.1
2121

2222
image=$1
2323

Diff for: manager/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
set -e
1818

19-
CORTEX_VERSION=0.13.0
19+
CORTEX_VERSION=0.13.1
2020
EKSCTL_TIMEOUT=45m
2121

2222
arg1="$1"

Diff for: pkg/consts/consts.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package consts
1818

1919
var (
20-
CortexVersion = "0.13.0" // CORTEX_VERSION
20+
CortexVersion = "0.13.1" // CORTEX_VERSION
2121
CortexVersionMinor = "0.13" // CORTEX_VERSION_MINOR
2222

2323
MaxClassesPerTrackerRequest = 20 // cloudwatch.GeMetricData can get up to 100 metrics per request, avoid multiple requests and have room for other stats

Diff for: pkg/workloads/cortex/client/cortex/client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def __init__(self, aws_access_key_id, aws_secret_access_key, operator_url):
4444
self.aws_access_key_id = aws_access_key_id
4545
self.aws_secret_access_key = aws_secret_access_key
4646
self.headers = {
47-
"CortexAPIVersion": "0.13.0", # CORTEX_VERSION
47+
"CortexAPIVersion": "0.13.1", # CORTEX_VERSION
4848
"Authorization": "CortexAWS {}|{}".format(
4949
self.aws_access_key_id, self.aws_secret_access_key
5050
),

Diff for: pkg/workloads/cortex/client/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
setup(
1818
name="cortex",
19-
version="0.13.0", # CORTEX_VERSION
19+
version="0.13.1", # CORTEX_VERSION
2020
description="",
2121
author="Cortex Labs",
2222
author_email="dev@cortexlabs.com",

Diff for: pkg/workloads/cortex/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
CORTEX_VERSION = "0.13.0"
15+
CORTEX_VERSION = "0.13.1"

0 commit comments

Comments
 (0)