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

Commit 6fb0f43

Browse files
committed
chore: prepare 0.23.0 release
Signed-off-by: Toma Puljak <[email protected]>
1 parent 873e0d9 commit 6fb0f43

File tree

4 files changed

+9
-9
lines changed

4 files changed

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

src/components/Footer.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import ThemeSelect from './ThemeSelect.astro'
1717
</p>
1818
<p>
1919
<Fragment set:html={textArrowIcon} />Latest project updates? - <a
20-
href="https://github.com/daytonaio/daytona/releases/tag/v0.22.0"
20+
href="https://github.com/daytonaio/daytona/releases/tag/v0.23.0"
2121
>View Changelog</a
2222
>
2323
</p>

src/content/docs/installation/installation.mdx

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

4141
```shell
4242
# x86-64
43-
curl -sf -L https://download.daytona.io/daytona/v0.22/daytona-linux-amd64 -o daytona
43+
curl -sf -L https://download.daytona.io/daytona/v0.23/daytona-linux-amd64 -o daytona
4444
# AArch64
45-
curl -sf -L https://download.daytona.io/daytona/v0.22/daytona-linux-arm64 -o daytona
45+
curl -sf -L https://download.daytona.io/daytona/v0.23/daytona-linux-arm64 -o daytona
4646
```
4747

4848
</Aside>
@@ -87,9 +87,9 @@ You can install Daytona by manually downloading the binary and placing it in you
8787

8888
```shell
8989
# x86-64/Intel-based
90-
curl -sf -L https://download.daytona.io/daytona/v0.22/daytona-darwin-amd64 -o daytona
90+
curl -sf -L https://download.daytona.io/daytona/v0.23/daytona-darwin-amd64 -o daytona
9191
# AArch64/Apple Silicon
92-
curl -sf -L https://download.daytona.io/daytona/v0.22/daytona-darwin-arm64 -o daytona
92+
curl -sf -L https://download.daytona.io/daytona/v0.23/daytona-darwin-arm64 -o daytona
9393
```
9494

9595
</Aside>

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

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

2626
```powershell
2727
# x86-64
28-
curl -sf -L https://download.daytona.io/daytona/v0.22/daytona-windows-amd64.exe -o daytona
28+
curl -sf -L https://download.daytona.io/daytona/v0.23/daytona-windows-amd64.exe -o daytona
2929
# AArch64
30-
curl -sf -L https://download.daytona.io/daytona/v0.22/daytona-windows-arm64.exe -o daytona
30+
curl -sf -L https://download.daytona.io/daytona/v0.23/daytona-windows-arm64.exe -o daytona
3131
```
3232

3333
</Aside>

0 commit comments

Comments
 (0)