Skip to content

Commit

Permalink
Update version to 0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
deliahu committed Dec 11, 2019
1 parent 8f1c5dd commit a391ed6
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 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.11.0
CORTEX_VERSION=0.11.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.11.0
CORTEX_VERSION=0.11.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.11.0
CORTEX_VERSION=0.11.1

image=$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.11.0" // CORTEX_VERSION
CortexVersion = "0.11.1" // CORTEX_VERSION
CortexVersionMinor = "0.11" // CORTEX_VERSION_MINOR

ContextCacheDir = "/mnt/context"
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.11.0", # CORTEX_VERSION
"CortexAPIVersion": "0.11.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.11.0", # CORTEX_VERSION
version="0.11.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.11.0"
CORTEX_VERSION = "0.11.1"

0 comments on commit a391ed6

Please sign in to comment.