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

Commit ebba89d

Browse files
committed
chore: release v0.35.0
Signed-off-by: Toma Puljak <[email protected]>
1 parent 2e71fc3 commit ebba89d

File tree

5 files changed

+33
-11
lines changed

5 files changed

+33
-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.33.0",
5+
"version": "0.35.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
@@ -44,9 +44,9 @@ You can install Daytona by manually downloading the binary and placing it in you
4444

4545
```shell
4646
# x86-64
47-
curl -sf -L https://download.daytona.io/daytona/v0.33/daytona-linux-amd64 -o daytona
47+
curl -sf -L https://download.daytona.io/daytona/v0.35/daytona-linux-amd64 -o daytona
4848
# AArch64
49-
curl -sf -L https://download.daytona.io/daytona/v0.33/daytona-linux-arm64 -o daytona
49+
curl -sf -L https://download.daytona.io/daytona/v0.35/daytona-linux-arm64 -o daytona
5050
```
5151

5252
</Aside>
@@ -92,9 +92,9 @@ You can install Daytona by manually downloading the binary and placing it in you
9292

9393
```shell
9494
# x86-64/Intel-based
95-
curl -sf -L https://download.daytona.io/daytona/v0.33/daytona-darwin-amd64 -o daytona
95+
curl -sf -L https://download.daytona.io/daytona/v0.35/daytona-darwin-amd64 -o daytona
9696
# AArch64/Apple Silicon
97-
curl -sf -L https://download.daytona.io/daytona/v0.33/daytona-darwin-arm64 -o daytona
97+
curl -sf -L https://download.daytona.io/daytona/v0.35/daytona-darwin-arm64 -o daytona
9898
```
9999

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

2929
</Aside>

src/content/docs/reference/api.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,12 @@ Create a build
7676

7777
Delete ALL builds
7878

79+
### Parameters
80+
81+
| Name | Location | Required | Type | Description |
82+
| :--- | :------- | :------- | :--- | :---------- |
83+
| `force` | query | undefined | boolean | Force |
84+
7985
### Responses
8086

8187
| Status Code | Description |
@@ -91,6 +97,7 @@ Delete builds
9197
| Name | Location | Required | Type | Description |
9298
| :--- | :------- | :------- | :--- | :---------- |
9399
| `prebuildId` | path | true | string | Prebuild ID |
100+
| `force` | query | undefined | boolean | Force |
94101

95102
### Responses
96103

@@ -123,6 +130,7 @@ Delete build
123130
| Name | Location | Required | Type | Description |
124131
| :--- | :------- | :------- | :--- | :---------- |
125132
| `buildId` | path | true | string | Build ID |
133+
| `force` | query | undefined | boolean | Force |
126134

127135
### Responses
128136

src/content/docs/reference/cli.mdx

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ __Flags__
126126
| Long | Short | Description |
127127
| :--- | :---- | :---------- |
128128
| `--all` | `-a` | Delete ALL builds |
129+
| `--force` | `-f` | Force delete build |
129130
| `--prebuild-id` | | Delete ALL builds from prebuild |
130131
| `--help` | | help for daytona |
131132

@@ -276,14 +277,14 @@ __Flags__
276277
Create a workspace
277278

278279
```shell
279-
daytona create [REPOSITORY_URL] [flags]
280+
daytona create [REPOSITORY_URL | PROJECT_CONFIG_NAME]... [flags]
280281
```
281282

282283
__Flags__
283284
| Long | Short | Description |
284285
| :--- | :---- | :---------- |
285286
| `--blank` | | Create a blank project without using existing configurations |
286-
| `--branch` | | Specify the Git branch to use in the project |
287+
| `--branch` | | Specify the Git branches to use in the projects |
287288
| `--builder` | | Specify the builder (currently auto/devcontainer/none) |
288289
| `--code` | `-c` | Open the workspace in the IDE after workspace creation |
289290
| `--custom-image` | | Create the project with the custom image passed as the flag value; Requires setting --custom-image-user flag as well |
@@ -655,7 +656,6 @@ daytona project-config add [flags]
655656
__Flags__
656657
| Long | Short | Description |
657658
| :--- | :---- | :---------- |
658-
| `--branch` | | Specify the Git branch to use in the project |
659659
| `--builder` | | Specify the builder (currently auto/devcontainer/none) |
660660
| `--custom-image` | | Create the project with the custom image passed as the flag value; Requires setting --custom-image-user flag as well |
661661
| `--custom-image-user` | | Create the project with the custom image user passed as the flag value; Requires setting --custom-image flag as well |
@@ -818,6 +818,20 @@ __Flags__
818818
| `--yes` | `-y` | Execute purge without prompt |
819819
| `--help` | | help for daytona |
820820

821+
## daytona restart
822+
823+
Restart a workspace
824+
825+
```shell
826+
daytona restart [WORKSPACE] [flags]
827+
```
828+
829+
__Flags__
830+
| Long | Short | Description |
831+
| :--- | :---- | :---------- |
832+
| `--project` | `-p` | Restart a single project in the workspace (project name) |
833+
| `--help` | | help for daytona |
834+
821835
## daytona serve
822836

823837
Run the server process in the current terminal session

0 commit comments

Comments
 (0)