Skip to content

Commit c997642

Browse files
committed
release: 0.20.1
Signed-off-by: Fionn Kelleher <[email protected]>
1 parent 401e795 commit c997642

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "docs",
33
"license": "Apache-2.0",
44
"type": "module",
5-
"version": "0.20.0",
5+
"version": "0.20.1",
66
"scripts": {
77
"dev": "astro dev --host",
88
"start": "yarn run dev",

src/content/docs/installation/installation.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ You can install Daytona by manually downloading the binary and placing it in you
3838

3939
```shell
4040
# x86-64
41-
curl -sf -L https://download.daytona.io/daytona/v0.18.0/daytona-linux-amd64 -o daytona
41+
curl -sf -L https://download.daytona.io/daytona/v0.20/daytona-linux-amd64 -o daytona
4242
# AArch64
43-
curl -sf -L https://download.daytona.io/daytona/v0.18.0/daytona-linux-arm64 -o daytona
43+
curl -sf -L https://download.daytona.io/daytona/v0.20/daytona-linux-arm64 -o daytona
4444
```
4545
</Aside>
4646

@@ -79,9 +79,9 @@ You can install Daytona by manually downloading the binary and placing it in you
7979

8080
```shell
8181
# x86-64/Intel-based
82-
curl -sf -L https://download.daytona.io/daytona/v0.18.0/daytona-darwin-amd64 -o daytona
82+
curl -sf -L https://download.daytona.io/daytona/v0.20/daytona-darwin-amd64 -o daytona
8383
# AArch64/Apple Silicon
84-
curl -sf -L https://download.daytona.io/daytona/v0.18.0/daytona-darwin-arm64 -o daytona
84+
curl -sf -L https://download.daytona.io/daytona/v0.20/daytona-darwin-arm64 -o daytona
8585
```
8686
</Aside>
8787

src/content/docs/installation/method/script-powershell.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ __Procedure__
1212
```powershell
1313
$architecture = if ($env:PROCESSOR_ARCHITECTURE -eq "AMD64") { "amd64" } else { "arm64" }
1414
md -Force "$Env:APPDATA\bin\daytona"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
15-
Invoke-WebRequest -URI "https://download.daytona.io/daytona/latest/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
15+
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.20/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
1616
$env:Path += ";" + $Env:APPDATA + "\bin\daytona"; [Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
1717
daytona serve;
1818
```
@@ -22,8 +22,8 @@ You can install Daytona by manually downloading the binary and placing it in you
2222

2323
```powershell
2424
# x86-64
25-
curl -sf -L https://download.daytona.io/daytona/v0.18.0/daytona-windows-amd64.exe -o daytona
25+
curl -sf -L https://download.daytona.io/daytona/v0.20/daytona-windows-amd64.exe -o daytona
2626
# AArch64
27-
curl -sf -L https://download.daytona.io/daytona/v0.18.0/daytona-windows-arm64.exe -o daytona
27+
curl -sf -L https://download.daytona.io/daytona/v0.20/daytona-windows-arm64.exe -o daytona
2828
```
2929
</Aside>

0 commit comments

Comments
 (0)