Skip to content

Commit 2ae0e73

Browse files
committed
Update version to 0.4.0
1 parent 67dfae1 commit 2ae0e73

File tree

19 files changed

+33
-33
lines changed

19 files changed

+33
-33
lines changed

README.md

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

33
<br>
44

5-
**Get started:** [Install](https://docs.cortex.dev/install)[Tutorial](https://docs.cortex.dev/tutorial)[Demo Video](https://www.youtube.com/watch?v=vcistUor0b4)<!-- CORTEX_VERSION_MINOR_STABLE e.g. https://docs.cortex.dev/v/0.2/ -->[Docs](https://docs.cortex.dev)<!-- CORTEX_VERSION_MINOR_STABLE -->[Examples](https://github.com/cortexlabs/cortex/tree/0.3/examples)
5+
**Get started:** [Install](https://docs.cortex.dev/install)[Tutorial](https://docs.cortex.dev/tutorial)[Demo Video](https://www.youtube.com/watch?v=vcistUor0b4)<!-- CORTEX_VERSION_MINOR_STABLE e.g. https://docs.cortex.dev/v/0.2/ -->[Docs](https://docs.cortex.dev/v/0.4)<!-- CORTEX_VERSION_MINOR_STABLE -->[Examples](https://github.com/cortexlabs/cortex/tree/0.4/examples)
66

77
**Learn more:** [Website](https://cortex.dev)[FAQ](https://docs.cortex.dev/faq)[Blog](https://blog.cortex.dev)[Subscribe](https://cortexlabs.us20.list-manage.com/subscribe?u=a1987373ab814f20961fd90b4&id=ae83491e1c)[Twitter](https://twitter.com/cortex_deploy)[Contact](mailto:[email protected])
88

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.4.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.4.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.4.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.4.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/implementations/aggregators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def aggregate_spark(data, input):
2222
pass
2323
```
2424

25-
See Cortex's built-in <!-- CORTEX_VERSION_MINOR -->[`aggregators`](https://github.com/cortexlabs/cortex/blob/master/pkg/aggregators)) for example implementations.
25+
See Cortex's built-in <!-- CORTEX_VERSION_MINOR -->[`aggregators`](https://github.com/cortexlabs/cortex/blob/0.4/pkg/aggregators)) for example implementations.
2626

2727
## Example
2828

docs/applications/implementations/estimators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def create_estimator(run_config, model_config):
2828

2929
See the [tf.estimator.RunConfig](https://www.tensorflow.org/api_docs/python/tf/estimator/RunConfig) and [tf.estimator.Estimator](https://www.tensorflow.org/api_docs/python/tf/estimator/Estimator) documentation for more information.
3030

31-
See Cortex's built-in <!-- CORTEX_VERSION_MINOR -->[`estimators`](https://github.com/cortexlabs/cortex/blob/master/pkg/estimators)) for example implementations.
31+
See Cortex's built-in <!-- CORTEX_VERSION_MINOR -->[`estimators`](https://github.com/cortexlabs/cortex/blob/0.4/pkg/estimators)) for example implementations.
3232

3333
## Example
3434

docs/applications/implementations/transformers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def reverse_transform_python(transformed_value, input):
6565
pass
6666
```
6767

68-
See Cortex's built-in <!-- CORTEX_VERSION_MINOR -->[`transformers`](https://github.com/cortexlabs/cortex/blob/master/pkg/transformers)) for example implementations.
68+
See Cortex's built-in <!-- CORTEX_VERSION_MINOR -->[`transformers`](https://github.com/cortexlabs/cortex/blob/0.4/pkg/transformers)) for example implementations.
6969

7070
## Example
7171

docs/applications/resources/aggregates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Aggregate columns at scale.
2323
2424
See [Data Types](data-types.md) for details about input values. Note: the `input` of the the aggregate must match the input type of the aggregator (if specified).
2525

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

2828
## Example
2929

docs/applications/resources/aggregators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ See [Data Types](data-types.md) for details about input and output types.
3030
3131
## Built-in Aggregators
3232
33-
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.mean`).
33+
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.4/pkg/aggregators/aggregators.yaml)). To use built-in aggregators, use the `cortex` namespace in the aggregator name (e.g. `cortex.mean`).

0 commit comments

Comments
 (0)