Skip to content

Commit b5e4753

Browse files
committed
Update stable version to 0.34.0
1 parent 5998c35 commit b5e4753

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

docs/clients/install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ pip install cortex
99
```
1010

1111
<!-- CORTEX_VERSION_README x2 -->
12-
To install or upgrade to a specific version (e.g. v0.33.0):
12+
To install or upgrade to a specific version (e.g. v0.34.0):
1313

1414
```bash
15-
pip install cortex==0.33.0
15+
pip install cortex==0.34.0
1616
```
1717

1818
To upgrade to the latest version:
@@ -25,8 +25,8 @@ pip install --upgrade cortex
2525

2626
<!-- CORTEX_VERSION_README x2 -->
2727
```bash
28-
# For example to download CLI version 0.33.0 (Note the "v"):
29-
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.33.0/get-cli.sh)"
28+
# For example to download CLI version 0.34.0 (Note the "v"):
29+
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.34.0/get-cli.sh)"
3030
```
3131

3232
By default, the Cortex CLI is installed at `/usr/local/bin/cortex`. To install the executable elsewhere, export the `CORTEX_INSTALL_PATH` environment variable to your desired location before running the command above.

docs/clusters/advanced/self-hosted-images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Clone the Cortex repo using the release tag corresponding to your version (which
1919
<!-- CORTEX_VERSION_README -->
2020

2121
```bash
22-
export CORTEX_VERSION=0.33.0
22+
export CORTEX_VERSION=0.34.0
2323
git clone --depth 1 --branch v$CORTEX_VERSION https://github.com/cortexlabs/cortex.git
2424
```
2525

docs/workloads/debugging.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@ The `cortex prepare-debug` command will generate a debugging configuration file
66

77
For example:
88

9+
<!-- CORTEX_VERSION_README x2 -->
10+
911
```bash
1012
cortex prepare-debug cortex.yaml iris-classifier
1113

1214
> docker run -p 9000:8888 \
13-
> -e "CORTEX_VERSION=master" \
15+
> -e "CORTEX_VERSION=0.34.0" \
1416
> -e "CORTEX_API_SPEC=/mnt/project/iris-classifier.debug.json" \
1517
> -v /home/ubuntu/iris-classifier:/mnt/project \
16-
> quay.io/cortexlabs/python-handler-cpu:master
18+
> quay.io/cortexlabs/python-handler-cpu:0.34.0
1719
```
1820

1921
Make a request to the api container:

0 commit comments

Comments
 (0)