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

Commit eff4282

Browse files
committed
chore: release v0.27.0
Signed-off-by: Toma Puljak <[email protected]>
1 parent aaafd87 commit eff4282

File tree

5 files changed

+39
-86
lines changed

5 files changed

+39
-86
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.26.0",
5+
"version": "0.27.0",
66
"scripts": {
77
"postinstall": "is-ci || husky",
88
"dev": "astro dev --host",

src/content/docs/installation/installation.mdx

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

4343
```shell
4444
# x86-64
45-
curl -sf -L https://download.daytona.io/daytona/v0.26/daytona-linux-amd64 -o daytona
45+
curl -sf -L https://download.daytona.io/daytona/v0.27/daytona-linux-amd64 -o daytona
4646
# AArch64
47-
curl -sf -L https://download.daytona.io/daytona/v0.26/daytona-linux-arm64 -o daytona
47+
curl -sf -L https://download.daytona.io/daytona/v0.27/daytona-linux-arm64 -o daytona
4848
```
4949

5050
</Aside>
@@ -89,9 +89,9 @@ You can install Daytona by manually downloading the binary and placing it in you
8989

9090
```shell
9191
# x86-64/Intel-based
92-
curl -sf -L https://download.daytona.io/daytona/v0.26/daytona-darwin-amd64 -o daytona
92+
curl -sf -L https://download.daytona.io/daytona/v0.27/daytona-darwin-amd64 -o daytona
9393
# AArch64/Apple Silicon
94-
curl -sf -L https://download.daytona.io/daytona/v0.26/daytona-darwin-arm64 -o daytona
94+
curl -sf -L https://download.daytona.io/daytona/v0.27/daytona-darwin-arm64 -o daytona
9595
```
9696

9797
</Aside>

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

2929
</Aside>

src/content/docs/reference/api.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -659,6 +659,16 @@ Uninstall a provider
659659
| :-------- | :---------- |
660660
| `200` | OK |
661661

662+
## GET /sample
663+
664+
List samples
665+
666+
### Responses
667+
668+
| Status Code | Description |
669+
| :-------- | :---------- |
670+
| `200` | OK |
671+
662672
## GET /server/config
663673

664674
Get the server configuration

0 commit comments

Comments
 (0)