diff --git a/build/build-image.sh b/build/build-image.sh index de8da23a6e..558db85b53 100755 --- a/build/build-image.sh +++ b/build/build-image.sh @@ -19,7 +19,7 @@ set -euo pipefail ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. >/dev/null && pwd)" -CORTEX_VERSION=0.7.0 +CORTEX_VERSION=0.7.1 dir=$1 image=$2 diff --git a/build/cli.sh b/build/cli.sh index 340eedf57e..3af9a22244 100755 --- a/build/cli.sh +++ b/build/cli.sh @@ -19,7 +19,7 @@ set -euo pipefail ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")"/.. >/dev/null && pwd)" -CORTEX_VERSION=0.7.0 +CORTEX_VERSION=0.7.1 arg1=${1:-""} upload="false" diff --git a/build/push-image.sh b/build/push-image.sh index b8885e5679..cec06bda87 100755 --- a/build/push-image.sh +++ b/build/push-image.sh @@ -17,7 +17,7 @@ set -euo pipefail -CORTEX_VERSION=0.7.0 +CORTEX_VERSION=0.7.1 image=$1 diff --git a/pkg/consts/consts.go b/pkg/consts/consts.go index 55c02a6736..c5abe535a0 100644 --- a/pkg/consts/consts.go +++ b/pkg/consts/consts.go @@ -21,7 +21,7 @@ import ( ) var ( - CortexVersion = "0.7.0" // CORTEX_VERSION + CortexVersion = "0.7.1" // CORTEX_VERSION TypeStrRegex = regexp.MustCompile(`"(INT|FLOAT|STRING|BOOL)(_COLUMN)?(\|(INT|FLOAT|STRING|BOOL)(_COLUMN)?)*"`) SingleTypeStrRegex = regexp.MustCompile(`"(INT|FLOAT|STRING|BOOL)(_COLUMN)?"`) diff --git a/pkg/workloads/cortex/consts.py b/pkg/workloads/cortex/consts.py index 486bbb0c41..bba80f0802 100644 --- a/pkg/workloads/cortex/consts.py +++ b/pkg/workloads/cortex/consts.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -CORTEX_VERSION = "0.7.0" +CORTEX_VERSION = "0.7.1" COLUMN_TYPE_INT = "INT_COLUMN" COLUMN_TYPE_FLOAT = "FLOAT_COLUMN"