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

Commit e657854

Browse files
committed
chore: release v0.53.0
Signed-off-by: Toma Puljak <[email protected]>
1 parent af9a884 commit e657854

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
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.52.4",
5+
"version": "0.53.0",
66
"scripts": {
77
"postinstall": "is-ci || husky",
88
"dev": "astro dev --host",

public/llms-full.txt

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

37453745
```shell
37463746
# x86-64
3747-
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-linux-amd64 -o daytona
3747+
curl -sf -L https://download.daytona.io/daytona/v0.53/daytona-linux-amd64 -o daytona
37483748
# ARM64
3749-
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-linux-arm64 -o daytona
3749+
curl -sf -L https://download.daytona.io/daytona/v0.53/daytona-linux-arm64 -o daytona
37503750
```
37513751

37523752
:::
@@ -3765,9 +3765,9 @@ You can install Daytona by manually downloading the binary and placing it in you
37653765

37663766
```shell
37673767
# x86-64/Intel-based
3768-
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-darwin-amd64 -o daytona
3768+
curl -sf -L https://download.daytona.io/daytona/v0.53/daytona-darwin-amd64 -o daytona
37693769
# ARM64/Apple Silicon
3770-
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-darwin-arm64 -o daytona
3770+
curl -sf -L https://download.daytona.io/daytona/v0.53/daytona-darwin-arm64 -o daytona
37713771
```
37723772

37733773
:::
@@ -3779,7 +3779,7 @@ Install Daytona on Windows using the following PowerShell script:
37793779
```powershell
37803780
$architecture = if ($env:PROCESSOR_ARCHITECTURE -eq "AMD64") { "amd64" } else { "arm64" }
37813781
md -Force "$Env:APPDATA\bin\daytona"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
3782-
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.52/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
3782+
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.53/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
37833783
$env:Path += ";" + $Env:APPDATA + "\bin\daytona"; [Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
37843784
daytona serve;
37853785
```
@@ -3789,9 +3789,9 @@ You can install Daytona by manually downloading the binary and placing it in you
37893789

37903790
```sh
37913791
# x86-64
3792-
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-windows-amd64.exe -o daytona
3792+
curl -sf -L https://download.daytona.io/daytona/v0.53/daytona-windows-amd64.exe -o daytona
37933793
# AArch64
3794-
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-windows-arm64.exe -o daytona
3794+
curl -sf -L https://download.daytona.io/daytona/v0.53/daytona-windows-arm64.exe -o daytona
37953795
```
37963796

37973797
:::

src/content/docs/installation/installation.mdx

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

3838
```shell
3939
# x86-64
40-
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-linux-amd64 -o daytona
40+
curl -sf -L https://download.daytona.io/daytona/v0.53/daytona-linux-amd64 -o daytona
4141
# ARM64
42-
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-linux-arm64 -o daytona
42+
curl -sf -L https://download.daytona.io/daytona/v0.53/daytona-linux-arm64 -o daytona
4343
```
4444

4545
:::
@@ -58,9 +58,9 @@ You can install Daytona by manually downloading the binary and placing it in you
5858

5959
```shell
6060
# x86-64/Intel-based
61-
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-darwin-amd64 -o daytona
61+
curl -sf -L https://download.daytona.io/daytona/v0.53/daytona-darwin-amd64 -o daytona
6262
# ARM64/Apple Silicon
63-
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-darwin-arm64 -o daytona
63+
curl -sf -L https://download.daytona.io/daytona/v0.53/daytona-darwin-arm64 -o daytona
6464
```
6565

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

8383
```sh
8484
# x86-64
85-
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-windows-amd64.exe -o daytona
85+
curl -sf -L https://download.daytona.io/daytona/v0.53/daytona-windows-amd64.exe -o daytona
8686
# AArch64
87-
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-windows-arm64.exe -o daytona
87+
curl -sf -L https://download.daytona.io/daytona/v0.53/daytona-windows-arm64.exe -o daytona
8888
```
8989

9090
:::

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.52/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
14+
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.53/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.52/daytona-windows-amd64.exe -o daytona
24+
curl -sf -L https://download.daytona.io/daytona/v0.53/daytona-windows-amd64.exe -o daytona
2525
# AArch64
26-
curl -sf -L https://download.daytona.io/daytona/v0.52/daytona-windows-arm64.exe -o daytona
26+
curl -sf -L https://download.daytona.io/daytona/v0.53/daytona-windows-arm64.exe -o daytona
2727
```
2828

2929
</Aside>

tools/update-cli-reference.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ async function process(args) {
143143
const commandOpts = {
144144
ref: {
145145
type: 'string',
146-
default: `v0.52.0`,
146+
default: `v0.53.0`,
147147
},
148148
output: {
149149
type: 'string',

tools/update-server-reference.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ async function process(args) {
109109
const commandOpts = {
110110
ref: {
111111
type: 'string',
112-
default: `v0.52.0`,
112+
default: `v0.53.0`,
113113
},
114114
output: {
115115
type: 'string',

0 commit comments

Comments
 (0)