Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.

Commit 0cb5df2

Browse files
committed
chore: release v0.52.0
Signed-off-by: Toma Puljak <[email protected]>
1 parent 767964f commit 0cb5df2

File tree

10 files changed

+5869
-2965
lines changed

10 files changed

+5869
-2965
lines changed

package.json

Lines changed: 1 addition & 1 deletion
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.51.1",
5+
"version": "0.52.0",
66
"scripts": {
77
"postinstall": "is-ci || husky",
88
"dev": "astro dev --host",

public/llms-full.txt

Lines changed: 3100 additions & 1811 deletions
Large diffs are not rendered by default.

public/llms.txt

Lines changed: 151 additions & 52 deletions
Large diffs are not rendered by default.

public/search.json

Lines changed: 1464 additions & 664 deletions
Large diffs are not rendered by default.

src/content/docs/installation/installation.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ You can install Daytona by manually downloading the binary and placing it in you
3636

3737
```shell
3838
# x86-64
39-
curl -sf -L https://download.daytona.io/daytona/v0.51/daytona-linux-amd64 -o daytona
39+
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-linux-amd64 -o daytona
4040
# ARM64
41-
curl -sf -L https://download.daytona.io/daytona/v0.51/daytona-linux-arm64 -o daytona
41+
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-linux-arm64 -o daytona
4242
```
4343

4444
:::
@@ -57,9 +57,9 @@ You can install Daytona by manually downloading the binary and placing it in you
5757

5858
```shell
5959
# x86-64/Intel-based
60-
curl -sf -L https://download.daytona.io/daytona/v0.51/daytona-darwin-amd64 -o daytona
60+
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-darwin-amd64 -o daytona
6161
# ARM64/Apple Silicon
62-
curl -sf -L https://download.daytona.io/daytona/v0.51/daytona-darwin-arm64 -o daytona
62+
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-darwin-arm64 -o daytona
6363
```
6464

6565
:::
@@ -71,7 +71,7 @@ Install Daytona on Windows using the following PowerShell script:
7171
```powershell
7272
$architecture = if ($env:PROCESSOR_ARCHITECTURE -eq "AMD64") { "amd64" } else { "arm64" }
7373
md -Force "$Env:APPDATA\bin\daytona"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
74-
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.51/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
74+
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.52/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
7575
$env:Path += ";" + $Env:APPDATA + "\bin\daytona"; [Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
7676
daytona serve;
7777
```
@@ -81,9 +81,9 @@ You can install Daytona by manually downloading the binary and placing it in you
8181

8282
```sh
8383
# x86-64
84-
curl -sf -L https://download.daytona.io/daytona/v0.51/daytona-windows-amd64.exe -o daytona
84+
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-windows-amd64.exe -o daytona
8585
# AArch64
86-
curl -sf -L https://download.daytona.io/daytona/v0.51/daytona-windows-arm64.exe -o daytona
86+
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-windows-arm64.exe -o daytona
8787
```
8888

8989
:::

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const partial = true
1111
```powershell
1212
$architecture = if ($env:PROCESSOR_ARCHITECTURE -eq "AMD64") { "amd64" } else { "arm64" }
1313
md -Force "$Env:APPDATA\bin\daytona"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
14-
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.51/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
14+
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.52/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
1515
$env:Path += ";" + $Env:APPDATA + "\bin\daytona"; [Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
1616
daytona serve;
1717
```
@@ -21,9 +21,9 @@ You can install Daytona by manually downloading the binary and placing it in you
2121

2222
```powershell
2323
# x86-64
24-
curl -sf -L https://download.daytona.io/daytona/v0.51/daytona-windows-amd64.exe -o daytona
24+
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-windows-amd64.exe -o daytona
2525
# AArch64
26-
curl -sf -L https://download.daytona.io/daytona/v0.51/daytona-windows-arm64.exe -o daytona
26+
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-windows-arm64.exe -o daytona
2727
```
2828

2929
</Aside>

0 commit comments

Comments
 (0)