Skip to content

Commit 25cbb98

Browse files
committed
Update version to 0.8.0
1 parent cd9d381 commit 25cbb98

26 files changed

+59
-59
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<img src='https://cortex-public.s3-us-west-2.amazonaws.com/logo.png' height='88'>
22

33
<!-- CORTEX_VERSION_MINOR x2 (e.g. docs.cortex.dev/v/0.8/...) -->
4-
[install](https://docs.cortex.dev/install)[docs](https://docs.cortex.dev)[examples](examples)[we're hiring](https://angel.co/cortex-labs-inc/jobs)[email us](mailto:[email protected])[chat with us](https://gitter.im/cortexlabs/cortex)
4+
[install](https://docs.cortex.dev/v/0.8/install)[docs](https://docs.cortex.dev/v/0.8)[examples](examples)[we're hiring](https://angel.co/cortex-labs-inc/jobs)[email us](mailto:[email protected])[chat with us](https://gitter.im/cortexlabs/cortex)
55

66
<br>
77

@@ -70,7 +70,7 @@ $ curl http://***.amazonaws.com/my-api -d '{"a": 1, "b": 2, "c": 3}'
7070
7171
```bash
7272
# Download the install script
73-
$ curl -O https://raw.githubusercontent.com/cortexlabs/cortex/0.7/cortex.sh && chmod +x cortex.sh
73+
$ curl -O https://raw.githubusercontent.com/cortexlabs/cortex/0.8/cortex.sh && chmod +x cortex.sh
7474

7575
# Install the Cortex CLI on your machine: the CLI sends configuration and code to the Cortex cluster
7676
$ ./cortex.sh install cli
@@ -89,7 +89,7 @@ $ ./cortex.sh install
8989
```
9090
9191
<!-- CORTEX_VERSION_MINOR (e.g. docs.cortex.dev/v/0.8/...) -->
92-
See [installation instructions](https://docs.cortex.dev/cluster/install) for more details.
92+
See [installation instructions](https://docs.cortex.dev/v/0.8/cluster/install) for more details.
9393
9494
<br>
9595
@@ -114,8 +114,8 @@ See [installation instructions](https://docs.cortex.dev/cluster/install) for mor
114114
## Examples
115115
116116
<!-- CORTEX_VERSION_MINOR_STABLE x3 -->
117-
- [Text generation](https://github.com/cortexlabs/cortex/tree/0.7/examples/text-generator) with GPT-2
117+
- [Text generation](https://github.com/cortexlabs/cortex/tree/0.8/examples/text-generator) with GPT-2
118118
119-
- [Sentiment analysis](https://github.com/cortexlabs/cortex/tree/0.7/examples/sentiment-analysis) with BERT
119+
- [Sentiment analysis](https://github.com/cortexlabs/cortex/tree/0.8/examples/sentiment-analysis) with BERT
120120
121-
- [Image classification](https://github.com/cortexlabs/cortex/tree/0.7/examples/image-classifier) with Inception v3
121+
- [Image classification](https://github.com/cortexlabs/cortex/tree/0.8/examples/image-classifier) with Inception v3

build/build-image.sh

+1-1
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.8.0
2323

2424
dir=$1
2525
image=$2

build/cli.sh

+1-1
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.8.0
2323

2424
arg1=${1:-""}
2525
upload="false"

build/push-image.sh

+1-1
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.8.0
2121

2222
image=$1
2323

cortex.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ set -u
8484
### CONFIGURATION ###
8585
#####################
8686

87-
export CORTEX_VERSION_STABLE=master
87+
export CORTEX_VERSION_STABLE=0.8.0
8888

8989
export CORTEX_CONFIG="${CORTEX_CONFIG:-""}"
9090
if [ "$CORTEX_CONFIG" != "" ]; then

docs/cluster/config.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -43,23 +43,23 @@ export CORTEX_NODES_MAX=5
4343
export CORTEX_NAMESPACE="cortex"
4444

4545
# Image paths
46-
export CORTEX_IMAGE_MANAGER="cortexlabs/manager:master"
47-
export CORTEX_IMAGE_FLUENTD="cortexlabs/fluentd:master"
48-
export CORTEX_IMAGE_STATSD="cortexlabs/statsd:master"
49-
export CORTEX_IMAGE_OPERATOR="cortexlabs/operator:master"
50-
export CORTEX_IMAGE_TF_SERVE="cortexlabs/tf-serve:master"
51-
export CORTEX_IMAGE_TF_API="cortexlabs/tf-api:master"
52-
export CORTEX_IMAGE_TF_SERVE_GPU="cortexlabs/tf-serve-gpu:master"
53-
export CORTEX_IMAGE_ONNX_SERVE="cortexlabs/onnx-serve:master"
54-
export CORTEX_IMAGE_ONNX_SERVE_GPU="cortexlabs/onnx-serve-gpu:master"
55-
export CORTEX_IMAGE_CLUSTER_AUTOSCALER="cortexlabs/cluster-autoscaler:master"
56-
export CORTEX_IMAGE_NVIDIA="cortexlabs/nvidia:master"
57-
export CORTEX_IMAGE_METRICS_SERVER="cortexlabs/metrics-server:master"
58-
export CORTEX_IMAGE_ISTIO_PROXY="cortexlabs/istio-proxy:master"
59-
export CORTEX_IMAGE_ISTIO_PILOT="cortexlabs/istio-pilot:master"
60-
export CORTEX_IMAGE_ISTIO_CITADEL="cortexlabs/istio-citadel:master"
61-
export CORTEX_IMAGE_ISTIO_GALLEY="cortexlabs/istio-galley:master"
62-
export CORTEX_IMAGE_DOWNLOADER="cortexlabs/downloader:master"
46+
export CORTEX_IMAGE_MANAGER="cortexlabs/manager:0.8.0"
47+
export CORTEX_IMAGE_FLUENTD="cortexlabs/fluentd:0.8.0"
48+
export CORTEX_IMAGE_STATSD="cortexlabs/statsd:0.8.0"
49+
export CORTEX_IMAGE_OPERATOR="cortexlabs/operator:0.8.0"
50+
export CORTEX_IMAGE_TF_SERVE="cortexlabs/tf-serve:0.8.0"
51+
export CORTEX_IMAGE_TF_API="cortexlabs/tf-api:0.8.0"
52+
export CORTEX_IMAGE_TF_SERVE_GPU="cortexlabs/tf-serve-gpu:0.8.0"
53+
export CORTEX_IMAGE_ONNX_SERVE="cortexlabs/onnx-serve:0.8.0"
54+
export CORTEX_IMAGE_ONNX_SERVE_GPU="cortexlabs/onnx-serve-gpu:0.8.0"
55+
export CORTEX_IMAGE_CLUSTER_AUTOSCALER="cortexlabs/cluster-autoscaler:0.8.0"
56+
export CORTEX_IMAGE_NVIDIA="cortexlabs/nvidia:0.8.0"
57+
export CORTEX_IMAGE_METRICS_SERVER="cortexlabs/metrics-server:0.8.0"
58+
export CORTEX_IMAGE_ISTIO_PROXY="cortexlabs/istio-proxy:0.8.0"
59+
export CORTEX_IMAGE_ISTIO_PILOT="cortexlabs/istio-pilot:0.8.0"
60+
export CORTEX_IMAGE_ISTIO_CITADEL="cortexlabs/istio-citadel:0.8.0"
61+
export CORTEX_IMAGE_ISTIO_GALLEY="cortexlabs/istio-galley:0.8.0"
62+
export CORTEX_IMAGE_DOWNLOADER="cortexlabs/downloader:0.8.0"
6363

6464
# Flag to enable collecting error reports and usage stats. If flag is not set to either "true" or "false", you will be prompted.
6565
export CORTEX_ENABLE_TELEMETRY=""

docs/cluster/install.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ See [cluster configuration](config.md) to customize your installation.
1313

1414
```bash
1515
# Download
16-
curl -O https://raw.githubusercontent.com/cortexlabs/cortex/master/cortex.sh
16+
curl -O https://raw.githubusercontent.com/cortexlabs/cortex/0.8/cortex.sh
1717

1818
# Change permissions
1919
chmod +x cortex.sh
@@ -42,7 +42,7 @@ This will create resources in your AWS account which aren't included in the free
4242

4343
```bash
4444
# Clone the Cortex repository
45-
git clone -b master https://github.com/cortexlabs/cortex.git
45+
git clone -b 0.8 https://github.com/cortexlabs/cortex.git
4646

4747
# Navigate to the iris classification example
4848
cd cortex/examples/iris-classifier

docs/cluster/uninstall.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
```bash
1313
# Download
14-
curl -O https://raw.githubusercontent.com/cortexlabs/cortex/master/cortex.sh
14+
curl -O https://raw.githubusercontent.com/cortexlabs/cortex/0.8/cortex.sh
1515

1616
# Change permissions
1717
chmod +x cortex.sh

docs/cluster/update.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ See [cluster configuration](config.md) to customize your installation.
1313

1414
```bash
1515
# Download
16-
curl -O https://raw.githubusercontent.com/cortexlabs/cortex/master/cortex.sh
16+
curl -O https://raw.githubusercontent.com/cortexlabs/cortex/0.8/cortex.sh
1717

1818
# Change permissions
1919
chmod +x cortex.sh

docs/deployments/packaging-models.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## TensorFlow
44

55
<!-- CORTEX_VERSION_MINOR -->
6-
Export your trained model and upload the export directory, or checkpoint directory containing the export directory, which is usually the case if you used `estimator.train_and_evaluate`. An example is shown below (here is the [complete example](https://github.com/cortexlabs/cortex/blob/master/examples/sentiment-analysis)):
6+
Export your trained model and upload the export directory, or checkpoint directory containing the export directory, which is usually the case if you used `estimator.train_and_evaluate`. An example is shown below (here is the [complete example](https://github.com/cortexlabs/cortex/blob/0.8/examples/sentiment-analysis)):
77

88
```Python
99
import tensorflow as tf
@@ -80,10 +80,10 @@ with open("sklearn.onnx", "wb") as f:
8080
<!-- CORTEX_VERSION_MINOR x4 -->
8181
Here are complete examples of converting models from some of the common ML frameworks to ONNX:
8282
83-
* [PyTorch](https://github.com/cortexlabs/cortex/blob/master/examples/iris-classifier/models/pytorch_model.py)
84-
* [Sklearn](https://github.com/cortexlabs/cortex/blob/master/examples/iris-classifier/models/sklearn_model.py)
85-
* [XGBoost](https://github.com/cortexlabs/cortex/blob/master/examples/iris-classifier/models/xgboost_model.py)
86-
* [Keras](https://github.com/cortexlabs/cortex/blob/master/examples/iris-classifier/models/keras_model.py)
83+
* [PyTorch](https://github.com/cortexlabs/cortex/blob/0.8/examples/iris-classifier/models/pytorch_model.py)
84+
* [Sklearn](https://github.com/cortexlabs/cortex/blob/0.8/examples/iris-classifier/models/sklearn_model.py)
85+
* [XGBoost](https://github.com/cortexlabs/cortex/blob/0.8/examples/iris-classifier/models/xgboost_model.py)
86+
* [Keras](https://github.com/cortexlabs/cortex/blob/0.8/examples/iris-classifier/models/keras_model.py)
8787
8888
Upload your trained model in ONNX format to Amazon S3 using the AWS web console or CLI:
8989

docs/summary.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
* [README](../README.md)
44
* [Install](cluster/install.md)
5-
* [Examples](https://github.com/cortexlabs/cortex/tree/master/examples) <!-- CORTEX_VERSION_MINOR -->
5+
* [Examples](https://github.com/cortexlabs/cortex/tree/0.8/examples) <!-- CORTEX_VERSION_MINOR -->
66

77
## Deployments
88

examples/image-classifier/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ A `deployment` specifies a set of resources that are deployed as a single unit.
1717
```
1818
<!-- CORTEX_VERSION_MINOR x2 -->
1919
You can run the code that generated the exported models used in this example folder here:
20-
- [Pytorch Alexnet](https://colab.research.google.com/github/cortexlabs/cortex/blob/master/examples/image-classifier/alexnet.ipynb)
21-
- [Tensorflow Inception V3](https://colab.research.google.com/github/cortexlabs/cortex/blob/master/examples/image-classifier/inception.ipynb)
20+
- [Pytorch Alexnet](https://colab.research.google.com/github/cortexlabs/cortex/blob/0.8/examples/image-classifier/alexnet.ipynb)
21+
- [Tensorflow Inception V3](https://colab.research.google.com/github/cortexlabs/cortex/blob/0.8/examples/image-classifier/inception.ipynb)
2222
2323
2424
## Add request handling

examples/image-classifier/alexnet.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@
166166
},
167167
"source": [
168168
"<!-- CORTEX_VERSION_MINOR -->\n",
169-
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/master/examples/image-classifier) for how to deploy the model as an API."
169+
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/0.8/examples/image-classifier) for how to deploy the model as an API."
170170
]
171171
}
172172
]

examples/image-classifier/inception.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@
202202
},
203203
"source": [
204204
"<!-- CORTEX_VERSION_MINOR -->\n",
205-
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/master/examples/image-classifier) for how to deploy the model as an API."
205+
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/0.8/examples/image-classifier) for how to deploy the model as an API."
206206
]
207207
}
208208
]

examples/iris-classifier/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ Define a `deployment` and an `api` resource in `cortex.yaml`. A `deployment` spe
1717
```
1818
<!-- CORTEX_VERSION_MINOR x5 -->
1919
You can run the code that generated the exported models used in this folder example here:
20-
- [Tensorflow](https://colab.research.google.com/github/cortexlabs/cortex/blob/master/examples/iris-classifier/models/tensorflow.ipynb)
21-
- [Pytorch](https://colab.research.google.com/github/cortexlabs/cortex/blob/master/examples/iris-classifier/models/pytorch.ipynb)
22-
- [Keras](https://colab.research.google.com/github/cortexlabs/cortex/blob/master/examples/iris-classifier/models/keras.ipynb)
23-
- [XGBoost](https://colab.research.google.com/github/cortexlabs/cortex/blob/master/examples/iris-classifier/models/xgboost.ipynb)
24-
- [sklearn](https://colab.research.google.com/github/cortexlabs/cortex/blob/master/examples/iris-classifier/models/sklearn.ipynb)
20+
- [Tensorflow](https://colab.research.google.com/github/cortexlabs/cortex/blob/0.8/examples/iris-classifier/models/tensorflow.ipynb)
21+
- [Pytorch](https://colab.research.google.com/github/cortexlabs/cortex/blob/0.8/examples/iris-classifier/models/pytorch.ipynb)
22+
- [Keras](https://colab.research.google.com/github/cortexlabs/cortex/blob/0.8/examples/iris-classifier/models/keras.ipynb)
23+
- [XGBoost](https://colab.research.google.com/github/cortexlabs/cortex/blob/0.8/examples/iris-classifier/models/xgboost.ipynb)
24+
- [sklearn](https://colab.research.google.com/github/cortexlabs/cortex/blob/0.8/examples/iris-classifier/models/sklearn.ipynb)
2525
2626
## Add request handling
2727

examples/iris-classifier/models/keras.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@
242242
},
243243
"source": [
244244
"<!-- CORTEX_VERSION_MINOR -->\n",
245-
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/master/examples/iris-classifier) for how to deploy the model as an API."
245+
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/0.8/examples/iris-classifier) for how to deploy the model as an API."
246246
]
247247
}
248248
]

examples/iris-classifier/models/pytorch.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@
274274
},
275275
"source": [
276276
"<!-- CORTEX_VERSION_MINOR -->\n",
277-
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/master/examples/iris-classifier) for how to deploy the model as an API."
277+
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/0.8/examples/iris-classifier) for how to deploy the model as an API."
278278
]
279279
}
280280
]

examples/iris-classifier/models/sklearn.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@
293293
},
294294
"source": [
295295
"<!-- CORTEX_VERSION_MINOR -->\n",
296-
"We also need to upload the mean and standard deviation, so that the [pre-inference request handler](https://github.com/cortexlabs/cortex/blob/master/examples/iris-classifier/handlers/sklearn.py) can normalize the data before making real-time predictions."
296+
"We also need to upload the mean and standard deviation, so that the [pre-inference request handler](https://github.com/cortexlabs/cortex/blob/0.8/examples/iris-classifier/handlers/sklearn.py) can normalize the data before making real-time predictions."
297297
]
298298
},
299299
{
@@ -347,7 +347,7 @@
347347
},
348348
"source": [
349349
"<!-- CORTEX_VERSION_MINOR -->\n",
350-
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/master/examples/iris-classifier) for how to deploy the model as an API."
350+
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/0.8/examples/iris-classifier) for how to deploy the model as an API."
351351
]
352352
}
353353
]

examples/iris-classifier/models/tensorflow.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@
287287
},
288288
"source": [
289289
"<!-- CORTEX_VERSION_MINOR -->\n",
290-
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/master/examples/iris-classifier) for how to deploy the model as an API."
290+
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/0.8/examples/iris-classifier) for how to deploy the model as an API."
291291
]
292292
}
293293
]

examples/iris-classifier/models/xgboost.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@
235235
},
236236
"source": [
237237
"<!-- CORTEX_VERSION_MINOR -->\n",
238-
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/master/examples/iris-classifier) for how to deploy the model as an API."
238+
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/0.8/examples/iris-classifier) for how to deploy the model as an API."
239239
]
240240
}
241241
]

examples/sentiment-analysis/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ A `deployment` specifies a set of resources that are deployed as a single unit.
1616
request_handler: sentiment.py
1717
```
1818
<!-- CORTEX_VERSION_MINOR -->
19-
You can run the code that generated the exported BERT model [here](https://colab.research.google.com/github/cortexlabs/cortex/blob/master/examples/sentiment-analysis/bert.ipynb).
19+
You can run the code that generated the exported BERT model [here](https://colab.research.google.com/github/cortexlabs/cortex/blob/0.8/examples/sentiment-analysis/bert.ipynb).
2020
2121
2222
## Add request handling

examples/sentiment-analysis/bert.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@
998998
},
999999
"source": [
10001000
"<!-- CORTEX_VERSION_MINOR -->\n",
1001-
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/master/examples/sentiment-analysis) for how to deploy the model as an API."
1001+
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/0.8/examples/sentiment-analysis) for how to deploy the model as an API."
10021002
]
10031003
}
10041004
]

examples/text-generator/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ A `deployment` specifies a set of resources that are deployed as a single unit.
1818
gpu: 1
1919
```
2020
<!-- CORTEX_VERSION_MINOR -->
21-
You can run the code that generated the exported GPT-2 model [here](https://colab.research.google.com/github/cortexlabs/cortex/blob/master/examples/text-generator/gpt-2.ipynb).
21+
You can run the code that generated the exported GPT-2 model [here](https://colab.research.google.com/github/cortexlabs/cortex/blob/0.8/examples/text-generator/gpt-2.ipynb).
2222
2323
## Add request handling
2424

examples/text-generator/gpt-2.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@
344344
},
345345
"source": [
346346
"<!-- CORTEX_VERSION_MINOR x2 -->\n",
347-
"We also need to upload `vocab.bpe` and `encoder.json`, so that the [encoder](https://github.com/cortexlabs/cortex/blob/master/examples/text-generator/encoder.py) in the [pre-inference request handler](https://github.com/cortexlabs/cortex/blob/master/examples/text-generator/handler.py) can encode the input text before making a request to the model."
347+
"We also need to upload `vocab.bpe` and `encoder.json`, so that the [encoder](https://github.com/cortexlabs/cortex/blob/0.8/examples/text-generator/encoder.py) in the [pre-inference request handler](https://github.com/cortexlabs/cortex/blob/0.8/examples/text-generator/handler.py) can encode the input text before making a request to the model."
348348
]
349349
},
350350
{
@@ -374,7 +374,7 @@
374374
},
375375
"source": [
376376
"<!-- CORTEX_VERSION_MINOR -->\n",
377-
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/master/examples/text-generator) for how to deploy the model as an API."
377+
"That's it! See the [example on GitHub](https://github.com/cortexlabs/cortex/tree/0.8/examples/text-generator) for how to deploy the model as an API."
378378
]
379379
}
380380
]

pkg/consts/consts.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ limitations under the License.
1717
package consts
1818

1919
var (
20-
CortexVersion = "master" // CORTEX_VERSION
20+
CortexVersion = "0.8.0" // CORTEX_VERSION
2121

2222
ContextCacheDir = "/mnt/context"
2323
EmptyDirMountPath = "/mnt"

pkg/workloads/cortex/consts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
CORTEX_VERSION = "master"
15+
CORTEX_VERSION = "0.8.0"

0 commit comments

Comments
 (0)