Skip to content

Commit bd10896

Browse files
committed
Update stable version to 0.39.0
1 parent c7697e7 commit bd10896

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

docs/clients/install.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
<!-- CORTEX_VERSION_README x2 -->
66
```bash
7-
# download CLI version 0.38.0 (Note the "v"):
8-
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.38.0/get-cli.sh)"
7+
# download CLI version 0.39.0 (Note the "v"):
8+
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.39.0/get-cli.sh)"
99
```
1010

1111
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.
@@ -19,10 +19,10 @@ pip install cortex
1919
```
2020

2121
<!-- CORTEX_VERSION_README x2 -->
22-
To install or upgrade to a specific version (e.g. v0.38.0):
22+
To install or upgrade to a specific version (e.g. v0.39.0):
2323

2424
```bash
25-
pip install cortex==0.38.0
25+
pip install cortex==0.39.0
2626
```
2727

2828
To upgrade to the latest version:

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.38.0
22+
export CORTEX_VERSION=0.39.0
2323
git clone --depth 1 --branch v$CORTEX_VERSION https://github.com/cortexlabs/cortex.git
2424
```
2525

docs/clusters/management/create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<!-- CORTEX_VERSION_README -->
1313
```bash
1414
# install the cortex CLI
15-
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.38.0/get-cli.sh)"
15+
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.39.0/get-cli.sh)"
1616

1717
# create a cluster
1818
cortex cluster up cluster.yaml

docs/clusters/management/update.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ If you are spinning a up a new cluster with a different Cortex version, first in
5959
<!-- CORTEX_VERSION_README x2 -->
6060

6161
```bash
62-
# download the desired CLI version, replace 0.38.0 with the desired version (Note the "v"):
63-
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.38.0/get-cli.sh)"
62+
# download the desired CLI version, replace 0.39.0 with the desired version (Note the "v"):
63+
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.39.0/get-cli.sh)"
6464

6565
# confirm Cortex CLI version
6666
cortex version
@@ -74,11 +74,11 @@ You can use different Cortex CLIs to interact with the different versioned clust
7474
<!-- CORTEX_VERSION_README x4 -->
7575

7676
```bash
77-
# download the desired CLI version, replace 0.38.0 with the desired version (Note the "v"):
78-
CORTEX_INSTALL_PATH=$(pwd)/cortex0.38.0 bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.38.0/get-cli.sh)"
77+
# download the desired CLI version, replace 0.39.0 with the desired version (Note the "v"):
78+
CORTEX_INSTALL_PATH=$(pwd)/cortex0.39.0 bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.39.0/get-cli.sh)"
7979

8080
# confirm cortex CLI version
81-
./cortex0.38.0 version
81+
./cortex0.39.0 version
8282
```
8383

8484
### Deploy the APIs to your new cluster

docs/clusters/observability/alerting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ containers:
155155
envFrom:
156156
- secretRef:
157157
name: grafana-smtp
158-
image: quay.io/cortexlabs/grafana:0.38.0
158+
image: quay.io/cortexlabs/grafana:0.39.0
159159
imagePullPolicy: IfNotPresent
160160
name: grafana
161161
# ...

docs/start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!-- CORTEX_VERSION_README -->
66
```bash
77
# install the CLI
8-
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.38.0/get-cli.sh)"
8+
bash -c "$(curl -sS https://raw.githubusercontent.com/cortexlabs/cortex/v0.39.0/get-cli.sh)"
99

1010
# create a cluster
1111
cortex cluster up cluster.yaml

0 commit comments

Comments
 (0)