Skip to content

Commit dc4f348

Browse files
committed
Update version to 0.10.2
1 parent 7f1292d commit dc4f348

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

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.10.1
22+
CORTEX_VERSION=0.10.2
2323

2424
dir=$1
2525
image=$2

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.10.1
22+
CORTEX_VERSION=0.10.2
2323

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

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.10.1
20+
CORTEX_VERSION=0.10.2
2121

2222
image=$1
2323

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.10.1" // CORTEX_VERSION
20+
CortexVersion = "0.10.2" // CORTEX_VERSION
2121

2222
ContextCacheDir = "/mnt/context"
2323
EmptyDirMountPath = "/mnt"

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.10.1", # CORTEX_VERSION
47+
"CortexAPIVersion": "0.10.2", # CORTEX_VERSION
4848
"Authorization": "CortexAWS {}|{}".format(
4949
self.aws_access_key_id, self.aws_secret_access_key
5050
),

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.10.1", # CORTEX_VERSION
19+
version="0.10.2", # CORTEX_VERSION
2020
description="",
2121
author="Cortex Labs",
2222
author_email="[email protected]",

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.10.1"
15+
CORTEX_VERSION = "0.10.2"

0 commit comments

Comments
 (0)