Skip to content

Commit a391ed6

Browse files
committed
Update version to 0.11.1
1 parent 8f1c5dd commit a391ed6

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

build/build-image.sh

Lines changed: 1 addition & 1 deletion
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.11.0
22+
CORTEX_VERSION=0.11.1
2323

2424
dir=$1
2525
image=$2

build/cli.sh

Lines changed: 1 addition & 1 deletion
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.11.0
22+
CORTEX_VERSION=0.11.1
2323

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

build/push-image.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
set -euo pipefail
1919

20-
CORTEX_VERSION=0.11.0
20+
CORTEX_VERSION=0.11.1
2121

2222
image=$1
2323

pkg/consts/consts.go

Lines changed: 1 addition & 1 deletion
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.11.0" // CORTEX_VERSION
20+
CortexVersion = "0.11.1" // CORTEX_VERSION
2121
CortexVersionMinor = "0.11" // CORTEX_VERSION_MINOR
2222

2323
ContextCacheDir = "/mnt/context"

pkg/workloads/cortex/client/cortex/client.py

Lines changed: 1 addition & 1 deletion
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.11.0", # CORTEX_VERSION
47+
"CortexAPIVersion": "0.11.1", # CORTEX_VERSION
4848
"Authorization": "CortexAWS {}|{}".format(
4949
self.aws_access_key_id, self.aws_secret_access_key
5050
),

pkg/workloads/cortex/client/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
setup(
1818
name="cortex",
19-
version="0.11.0", # CORTEX_VERSION
19+
version="0.11.1", # CORTEX_VERSION
2020
description="",
2121
author="Cortex Labs",
2222
author_email="[email protected]",

pkg/workloads/cortex/consts.py

Lines changed: 1 addition & 1 deletion
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.11.0"
15+
CORTEX_VERSION = "0.11.1"

0 commit comments

Comments
 (0)