Skip to content

Commit

Permalink
Update version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
deliahu committed Mar 12, 2019
1 parent faa421a commit 058f04a
Show file tree
Hide file tree
Showing 16 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<br>

[Install](https://docs.cortexlabs.com/cortex/install)[Quick Start](https://docs.cortexlabs.com/cortex/quick-start)[Demo Video](https://www.youtube.com/watch?v=vcistUor0b4)[Docs](https://docs.cortexlabs.com/cortex)<!-- CORTEX_VERSION_MINOR_STABLE -->[Examples](https://github.com/cortexlabs/cortex/tree/0.1/examples)[FAQ](https://docs.cortexlabs.com/cortex/faq)[Newsletter](https://cortexlabs.us20.list-manage.com/subscribe?u=a1987373ab814f20961fd90b4&id=ae83491e1c)[Gitter](https://gitter.im/cortexlabs/cortex)
[Install](https://docs.cortexlabs.com/cortex/install)[Quick Start](https://docs.cortexlabs.com/cortex/quick-start)[Demo Video](https://www.youtube.com/watch?v=vcistUor0b4)[Docs](https://docs.cortexlabs.com/cortex)<!-- CORTEX_VERSION_MINOR_STABLE -->[Examples](https://github.com/cortexlabs/cortex/tree/0.2/examples)[FAQ](https://docs.cortexlabs.com/cortex/faq)[Newsletter](https://cortexlabs.us20.list-manage.com/subscribe?u=a1987373ab814f20961fd90b4&id=ae83491e1c)[Gitter](https://gitter.im/cortexlabs/cortex)

<br>

Expand Down
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=master
CORTEX_VERSION=0.2.0

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=master
CORTEX_VERSION=0.2.0

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=master
CORTEX_VERSION=0.2.0

image=$1

Expand Down
2 changes: 1 addition & 1 deletion cortex-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ fi

set -u

export CORTEX_VERSION_STABLE=master
export CORTEX_VERSION_STABLE=0.2.0

# Defaults
random_id=$(cat /dev/urandom | LC_CTYPE=C tr -dc 'a-z0-9' | fold -w 12 | head -n 1)
Expand Down
2 changes: 1 addition & 1 deletion docs/applications/resources/aggregates.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Note: the `columns` and `args` fields of the the aggregate must match the data t

Each `args` value may be the name of a constant or a literal value. Any string value will be assumed to be the name of a constant. To use a string literal as an arg, escape it with double quotes (e.g. `arg_name: "\"string literal\""`.

See <!-- CORTEX_VERSION_MINOR -->[`aggregators.yaml`](https://github.com/cortexlabs/cortex/blob/master/pkg/aggregators/aggregators.yaml) for a list of built-in aggregators.
See <!-- CORTEX_VERSION_MINOR -->[`aggregators.yaml`](https://github.com/cortexlabs/cortex/blob/0.2/pkg/aggregators/aggregators.yaml) for a list of built-in aggregators.

## Example

Expand Down
2 changes: 1 addition & 1 deletion docs/applications/resources/aggregators.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ See [Data Types](data-types.md) for a list of valid data types.
## Built-in Aggregators
Cortex includes common aggregators that can be used out of the box (see <!-- CORTEX_VERSION_MINOR -->[`aggregators.yaml`](https://github.com/cortexlabs/cortex/blob/master/pkg/aggregators/aggregators.yaml)). To use built-in aggregators, use the `cortex` namespace in the aggregator name (e.g. `cortex.normalize`).
Cortex includes common aggregators that can be used out of the box (see <!-- CORTEX_VERSION_MINOR -->[`aggregators.yaml`](https://github.com/cortexlabs/cortex/blob/0.2/pkg/aggregators/aggregators.yaml)). To use built-in aggregators, use the `cortex` namespace in the aggregator name (e.g. `cortex.normalize`).
2 changes: 1 addition & 1 deletion docs/applications/resources/transformed-columns.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Note: the `columns` and `args` fields of the the transformed column must match t

Each `args` value may be the name of an aggregate, the name of a constant, or a literal value. Any string value will be assumed to be the name of an aggregate or constant. To use a string literal as an arg, escape it with double quotes (e.g. `arg_name: "\"string literal\""`.

See <!-- CORTEX_VERSION_MINOR -->[`transformers.yaml`](https://github.com/cortexlabs/cortex/blob/master/pkg/transformers/transformers.yaml) for a list of built-in transformers.
See <!-- CORTEX_VERSION_MINOR -->[`transformers.yaml`](https://github.com/cortexlabs/cortex/blob/0.2/pkg/transformers/transformers.yaml) for a list of built-in transformers.

## Example

Expand Down
2 changes: 1 addition & 1 deletion docs/applications/resources/transformers.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ See [Data Types](datatypes.md) for a list of valid data types.
## Built-in Transformers
Cortex includes common transformers that can be used out of the box (see <!-- CORTEX_VERSION_MINOR -->[`transformers.yaml`](https://github.com/cortexlabs/cortex/blob/master/pkg/transformers/transformers.yaml)). To use built-in transformers, use the `cortex` namespace in the transformer name (e.g. `cortex.normalize`).
Cortex includes common transformers that can be used out of the box (see <!-- CORTEX_VERSION_MINOR -->[`transformers.yaml`](https://github.com/cortexlabs/cortex/blob/0.2/pkg/transformers/transformers.yaml)). To use built-in transformers, use the `cortex` namespace in the transformer name (e.g. `cortex.normalize`).
28 changes: 14 additions & 14 deletions docs/operator/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@ export CORTEX_NAMESPACE="cortex"
export CORTEX_ENABLE_TELEMETRY=""

# Image paths
export CORTEX_IMAGE_ARGO_CONTROLLER="cortexlabs/argo-controller:master"
export CORTEX_IMAGE_ARGO_EXECUTOR="cortexlabs/argo-executor:master"
export CORTEX_IMAGE_FLUENTD="cortexlabs/fluentd:master"
export CORTEX_IMAGE_NGINX_BACKEND="cortexlabs/nginx-backend:master"
export CORTEX_IMAGE_NGINX_CONTROLLER="cortexlabs/nginx-controller:master"
export CORTEX_IMAGE_OPERATOR="cortexlabs/operator:master"
export CORTEX_IMAGE_SPARK="cortexlabs/spark:master"
export CORTEX_IMAGE_SPARK_OPERATOR="cortexlabs/spark-operator:master"
export CORTEX_IMAGE_TF_SERVE="cortexlabs/tf-serve:master"
export CORTEX_IMAGE_TF_TRAIN="cortexlabs/tf-train:master"
export CORTEX_IMAGE_TF_API="cortexlabs/tf-api:master"
export CORTEX_IMAGE_TF_TRAIN_GPU="cortexlabs/tf-train-gpu:master"
export CORTEX_IMAGE_TF_SERVE_GPU="cortexlabs/tf-serve-gpu:master"
export CORTEX_IMAGE_PYTHON_PACKAGER="cortexlabs/python-packager:master"
export CORTEX_IMAGE_ARGO_CONTROLLER="cortexlabs/argo-controller:0.2.0"
export CORTEX_IMAGE_ARGO_EXECUTOR="cortexlabs/argo-executor:0.2.0"
export CORTEX_IMAGE_FLUENTD="cortexlabs/fluentd:0.2.0"
export CORTEX_IMAGE_NGINX_BACKEND="cortexlabs/nginx-backend:0.2.0"
export CORTEX_IMAGE_NGINX_CONTROLLER="cortexlabs/nginx-controller:0.2.0"
export CORTEX_IMAGE_OPERATOR="cortexlabs/operator:0.2.0"
export CORTEX_IMAGE_SPARK="cortexlabs/spark:0.2.0"
export CORTEX_IMAGE_SPARK_OPERATOR="cortexlabs/spark-operator:0.2.0"
export CORTEX_IMAGE_TF_SERVE="cortexlabs/tf-serve:0.2.0"
export CORTEX_IMAGE_TF_TRAIN="cortexlabs/tf-train:0.2.0"
export CORTEX_IMAGE_TF_API="cortexlabs/tf-api:0.2.0"
export CORTEX_IMAGE_TF_TRAIN_GPU="cortexlabs/tf-train-gpu:0.2.0"
export CORTEX_IMAGE_TF_SERVE_GPU="cortexlabs/tf-serve-gpu:0.2.0"
export CORTEX_IMAGE_PYTHON_PACKAGER="cortexlabs/python-packager:0.2.0"
```
2 changes: 1 addition & 1 deletion docs/operator/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Follow this [tutorial](https://aws.amazon.com/premiumsupport/knowledge-center/cr

```bash
# Download
curl -O https://raw.githubusercontent.com/cortexlabs/cortex/master/cortex-installer.sh
curl -O https://raw.githubusercontent.com/cortexlabs/cortex/0.2/cortex-installer.sh

# Change permissions
chmod +x cortex-installer.sh
Expand Down
2 changes: 1 addition & 1 deletion docs/operator/uninstall.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

```bash
# Download
curl -O https://raw.githubusercontent.com/cortexlabs/cortex/master/cortex-installer.sh
curl -O https://raw.githubusercontent.com/cortexlabs/cortex/0.2/cortex-installer.sh

# Change permissions
chmod +x cortex-installer.sh
Expand Down
2 changes: 1 addition & 1 deletion docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You can download pre-built applications from our repository:
<!-- CORTEX_VERSION_MINOR -->

```bash
git clone -b master https://github.com/cortexlabs/cortex.git
git clone -b 0.2 https://github.com/cortexlabs/cortex.git
cd cortex/examples/iris
cortex deploy
```
Expand Down
2 changes: 1 addition & 1 deletion docs/summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* [Quick Start](quick-start.md)
* [Application Overview](applications/resources/overview.md)
* [CLI Commands](operator/cli.md)
* [Examples](https://github.com/cortexlabs/cortex/tree/master/examples) <!-- CORTEX_VERSION_MINOR -->
* [Examples](https://github.com/cortexlabs/cortex/tree/0.2/examples) <!-- CORTEX_VERSION_MINOR -->
* [GitHub](https://github.com/cortexlabs/cortex)
* [FAQ](faq.md)

Expand Down
2 changes: 1 addition & 1 deletion pkg/consts/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
)

var (
CortexVersion = "master" // CORTEX_VERSION
CortexVersion = "0.2.0" // CORTEX_VERSION

SingleTypeStrRegex = regexp.MustCompile(`"(INT|FLOAT|STRING|BOOL)(_COLUMN)?"`)
CompoundTypeStrRegex = regexp.MustCompile(`"(INT|FLOAT|STRING|BOOL)(_COLUMN)?(\|(INT|FLOAT|STRING|BOOL)(_COLUMN)?)+"`)
Expand Down
2 changes: 1 addition & 1 deletion pkg/workloads/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

CORTEX_VERSION = "master"
CORTEX_VERSION = "0.2.0"

COLUMN_TYPE_INT = "INT_COLUMN"
COLUMN_TYPE_FLOAT = "FLOAT_COLUMN"
Expand Down

0 comments on commit 058f04a

Please sign in to comment.