Skip to content

Commit 56a6d3f

Browse files
committed
Update version to 0.1.0
1 parent abbabd8 commit 56a6d3f

File tree

15 files changed

+25
-25
lines changed

15 files changed

+25
-25
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
branches:
22
only:
3-
- master
3+
- "0.1"
44

55
sudo: required
66

build/cli.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.1.0
2121

2222
function build_and_upload() {
2323
set -euo pipefail

build/images.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.1.0
2121

2222
dir=$1
2323
image=$2

cortex.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ if [ -f "$CORTEX_CONFIG" ]; then
125125
source $CORTEX_CONFIG
126126
fi
127127

128-
export CORTEX_VERSION_STABLE=master
128+
export CORTEX_VERSION_STABLE=0.1.0
129129

130130
# Defaults
131131
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.1/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
@@ -35,4 +35,4 @@ See [Data Types](data-types.md) for a list of valid data types.
3535
3636
## Built-in Aggregators
3737
38-
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`).
38+
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.1/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.1/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
@@ -36,4 +36,4 @@ See [Data Types](datatypes.md) for a list of valid data types.
3636
3737
## Built-in Transformers
3838
39-
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`).
39+
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.1/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: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ export CORTEX_REGION="us-west-2"
2424
export CORTEX_NAMESPACE="cortex"
2525

2626
# Image paths
27-
export CORTEX_IMAGE_ARGO_CONTROLLER="cortexlabs/argo-controller:master"
28-
export CORTEX_IMAGE_ARGO_EXECUTOR="cortexlabs/argo-executor:master"
29-
export CORTEX_IMAGE_FLUENTD="cortexlabs/fluentd:master"
30-
export CORTEX_IMAGE_NGINX_BACKEND="cortexlabs/nginx-backend:master"
31-
export CORTEX_IMAGE_NGINX_CONTROLLER="cortexlabs/nginx-controller:master"
32-
export CORTEX_IMAGE_OPERATOR="cortexlabs/operator:master"
33-
export CORTEX_IMAGE_SPARK="cortexlabs/spark:master"
34-
export CORTEX_IMAGE_SPARK_OPERATOR="cortexlabs/spark-operator:master"
35-
export CORTEX_IMAGE_TF_SERVE="cortexlabs/tf-serve:master"
36-
export CORTEX_IMAGE_TF_TRAIN="cortexlabs/tf-train:master"
37-
export CORTEX_IMAGE_TF_API="cortexlabs/tf-api:master"
27+
export CORTEX_IMAGE_ARGO_CONTROLLER="cortexlabs/argo-controller:0.1.0"
28+
export CORTEX_IMAGE_ARGO_EXECUTOR="cortexlabs/argo-executor:0.1.0"
29+
export CORTEX_IMAGE_FLUENTD="cortexlabs/fluentd:0.1.0"
30+
export CORTEX_IMAGE_NGINX_BACKEND="cortexlabs/nginx-backend:0.1.0"
31+
export CORTEX_IMAGE_NGINX_CONTROLLER="cortexlabs/nginx-controller:0.1.0"
32+
export CORTEX_IMAGE_OPERATOR="cortexlabs/operator:0.1.0"
33+
export CORTEX_IMAGE_SPARK="cortexlabs/spark:0.1.0"
34+
export CORTEX_IMAGE_SPARK_OPERATOR="cortexlabs/spark-operator:0.1.0"
35+
export CORTEX_IMAGE_TF_SERVE="cortexlabs/tf-serve:0.1.0"
36+
export CORTEX_IMAGE_TF_TRAIN="cortexlabs/tf-train:0.1.0"
37+
export CORTEX_IMAGE_TF_API="cortexlabs/tf-api:0.1.0"
3838
```

docs/operator/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Follow this [tutorial](https://aws.amazon.com/premiumsupport/knowledge-center/cr
1818

1919
```bash
2020
# Download
21-
curl -O https://raw.githubusercontent.com/cortexlabs/cortex/master/cortex.sh
21+
curl -O https://raw.githubusercontent.com/cortexlabs/cortex/0.1/cortex.sh
2222

2323
# Change permissions
2424
chmod +x cortex.sh

0 commit comments

Comments
 (0)