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

Commit 1d0a90a

Browse files
committed
chore: release v0.45.0
Signed-off-by: Toma Puljak <[email protected]>
1 parent 9597a3d commit 1d0a90a

File tree

3 files changed

+11
-11
lines changed

3 files changed

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

src/content/docs/installation/installation.mdx

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

3333
```shell
3434
# x86-64
35-
curl -sf -L https://download.daytona.io/daytona/v0.42/daytona-linux-amd64 -o daytona
35+
curl -sf -L https://download.daytona.io/daytona/v0.45/daytona-linux-amd64 -o daytona
3636
# ARM64
37-
curl -sf -L https://download.daytona.io/daytona/v0.42/daytona-linux-arm64 -o daytona
37+
curl -sf -L https://download.daytona.io/daytona/v0.45/daytona-linux-arm64 -o daytona
3838
```
3939

4040
:::
@@ -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.42/daytona-darwin-amd64 -o daytona
60+
curl -sf -L https://download.daytona.io/daytona/v0.45/daytona-darwin-amd64 -o daytona
6161
# ARM64/Apple Silicon
62-
curl -sf -L https://download.daytona.io/daytona/v0.42/daytona-darwin-arm64 -o daytona
62+
curl -sf -L https://download.daytona.io/daytona/v0.45/daytona-darwin-arm64 -o daytona
6363
```
6464

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

8686
```sh
8787
# x86-64
88-
curl -sf -L https://download.daytona.io/daytona/v0.42/daytona-windows-amd64.exe -o daytona
88+
curl -sf -L https://download.daytona.io/daytona/v0.45/daytona-windows-amd64.exe -o daytona
8989
# AArch64
90-
curl -sf -L https://download.daytona.io/daytona/v0.42/daytona-windows-arm64.exe -o daytona
90+
curl -sf -L https://download.daytona.io/daytona/v0.45/daytona-windows-arm64.exe -o daytona
9191
```
9292

9393
:::

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

2929
</Aside>

0 commit comments

Comments
 (0)