Skip to content

Commit 058f04a

Browse files
committed
Update version to 0.2.0
1 parent faa421a commit 058f04a

File tree

16 files changed

+29
-29
lines changed

16 files changed

+29
-29
lines changed

README.md

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

44
<br>
55

6-
[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)
6+
[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)
77

88
<br>
99

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=master
22+
CORTEX_VERSION=0.2.0
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=master
22+
CORTEX_VERSION=0.2.0
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=master
20+
CORTEX_VERSION=0.2.0
2121

2222
image=$1
2323

cortex-installer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ fi
114114

115115
set -u
116116

117-
export CORTEX_VERSION_STABLE=master
117+
export CORTEX_VERSION_STABLE=0.2.0
118118

119119
# Defaults
120120
random_id=$(cat /dev/urandom | LC_CTYPE=C tr -dc 'a-z0-9' | fold -w 12 | head -n 1)

docs/applications/resources/aggregates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Note: the `columns` and `args` fields of the the aggregate must match the data t
3333

3434
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\""`.
3535

36-
See <!-- CORTEX_VERSION_MINOR -->[`aggregators.yaml`](https://github.com/cortexlabs/cortex/blob/master/pkg/aggregators/aggregators.yaml) for a list of built-in aggregators.
36+
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.
3737

3838
## Example
3939

docs/applications/resources/aggregators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ See [Data Types](data-types.md) for a list of valid data types.
3737
3838
## Built-in Aggregators
3939
40-
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`).
40+
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`).

docs/applications/resources/transformed-columns.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Note: the `columns` and `args` fields of the the transformed column must match t
3333

3434
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\""`.
3535

36-
See <!-- CORTEX_VERSION_MINOR -->[`transformers.yaml`](https://github.com/cortexlabs/cortex/blob/master/pkg/transformers/transformers.yaml) for a list of built-in transformers.
36+
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.
3737

3838
## Example
3939

docs/applications/resources/transformers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ See [Data Types](datatypes.md) for a list of valid data types.
3838
3939
## Built-in Transformers
4040
41-
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`).
41+
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`).

docs/operator/config.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ export CORTEX_NAMESPACE="cortex"
2727
export CORTEX_ENABLE_TELEMETRY=""
2828

2929
# Image paths
30-
export CORTEX_IMAGE_ARGO_CONTROLLER="cortexlabs/argo-controller:master"
31-
export CORTEX_IMAGE_ARGO_EXECUTOR="cortexlabs/argo-executor:master"
32-
export CORTEX_IMAGE_FLUENTD="cortexlabs/fluentd:master"
33-
export CORTEX_IMAGE_NGINX_BACKEND="cortexlabs/nginx-backend:master"
34-
export CORTEX_IMAGE_NGINX_CONTROLLER="cortexlabs/nginx-controller:master"
35-
export CORTEX_IMAGE_OPERATOR="cortexlabs/operator:master"
36-
export CORTEX_IMAGE_SPARK="cortexlabs/spark:master"
37-
export CORTEX_IMAGE_SPARK_OPERATOR="cortexlabs/spark-operator:master"
38-
export CORTEX_IMAGE_TF_SERVE="cortexlabs/tf-serve:master"
39-
export CORTEX_IMAGE_TF_TRAIN="cortexlabs/tf-train:master"
40-
export CORTEX_IMAGE_TF_API="cortexlabs/tf-api:master"
41-
export CORTEX_IMAGE_TF_TRAIN_GPU="cortexlabs/tf-train-gpu:master"
42-
export CORTEX_IMAGE_TF_SERVE_GPU="cortexlabs/tf-serve-gpu:master"
43-
export CORTEX_IMAGE_PYTHON_PACKAGER="cortexlabs/python-packager:master"
30+
export CORTEX_IMAGE_ARGO_CONTROLLER="cortexlabs/argo-controller:0.2.0"
31+
export CORTEX_IMAGE_ARGO_EXECUTOR="cortexlabs/argo-executor:0.2.0"
32+
export CORTEX_IMAGE_FLUENTD="cortexlabs/fluentd:0.2.0"
33+
export CORTEX_IMAGE_NGINX_BACKEND="cortexlabs/nginx-backend:0.2.0"
34+
export CORTEX_IMAGE_NGINX_CONTROLLER="cortexlabs/nginx-controller:0.2.0"
35+
export CORTEX_IMAGE_OPERATOR="cortexlabs/operator:0.2.0"
36+
export CORTEX_IMAGE_SPARK="cortexlabs/spark:0.2.0"
37+
export CORTEX_IMAGE_SPARK_OPERATOR="cortexlabs/spark-operator:0.2.0"
38+
export CORTEX_IMAGE_TF_SERVE="cortexlabs/tf-serve:0.2.0"
39+
export CORTEX_IMAGE_TF_TRAIN="cortexlabs/tf-train:0.2.0"
40+
export CORTEX_IMAGE_TF_API="cortexlabs/tf-api:0.2.0"
41+
export CORTEX_IMAGE_TF_TRAIN_GPU="cortexlabs/tf-train-gpu:0.2.0"
42+
export CORTEX_IMAGE_TF_SERVE_GPU="cortexlabs/tf-serve-gpu:0.2.0"
43+
export CORTEX_IMAGE_PYTHON_PACKAGER="cortexlabs/python-packager:0.2.0"
4444
```

0 commit comments

Comments
 (0)