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

Commit 5ab98b6

Browse files
committed
chore: release v0.31.0
Signed-off-by: Toma Puljak <[email protected]>
1 parent 051db18 commit 5ab98b6

File tree

6 files changed

+17
-13
lines changed

6 files changed

+17
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Its core architecture leverages React, while documentation content is authored u
3636

3737
### Using Daytona (Recommended)
3838

39-
The most efficient way to begin working on the documentation is by utilizing a development environment manager (DEM) like Daytona.
39+
The most efficient way to begin working on the documentation is by utilizing a development environment manager (DEM) like Daytona.
4040
To set up a Workspace with the necessary dependencies and configurations for local preview, run the following command:
4141

4242
```shell

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.30.1",
5+
"version": "0.31.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.30/daytona-linux-amd64 -o daytona
47+
curl -sf -L https://download.daytona.io/daytona/v0.31/daytona-linux-amd64 -o daytona
4848
# AArch64
49-
curl -sf -L https://download.daytona.io/daytona/v0.30/daytona-linux-arm64 -o daytona
49+
curl -sf -L https://download.daytona.io/daytona/v0.31/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.30/daytona-darwin-amd64 -o daytona
95+
curl -sf -L https://download.daytona.io/daytona/v0.31/daytona-darwin-amd64 -o daytona
9696
# AArch64/Apple Silicon
97-
curl -sf -L https://download.daytona.io/daytona/v0.30/daytona-darwin-arm64 -o daytona
97+
curl -sf -L https://download.daytona.io/daytona/v0.31/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.30/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
14+
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.31/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.30/daytona-windows-amd64.exe -o daytona
24+
curl -sf -L https://download.daytona.io/daytona/v0.31/daytona-windows-amd64.exe -o daytona
2525
# AArch64
26-
curl -sf -L https://download.daytona.io/daytona/v0.30/daytona-windows-arm64.exe -o daytona
26+
curl -sf -L https://download.daytona.io/daytona/v0.31/daytona-windows-arm64.exe -o daytona
2727
```
2828

2929
</Aside>

src/content/docs/reference/api.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -788,6 +788,7 @@ Get workspace info
788788
| Name | Location | Required | Type | Description |
789789
| :--- | :------- | :------- | :--- | :---------- |
790790
| `workspaceId` | path | true | string | Workspace ID or Name |
791+
| `verbose` | query | undefined | boolean | Verbose |
791792

792793
### Responses
793794

src/content/docs/reference/cli.mdx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ daytona code [WORKSPACE] [PROJECT] [flags]
196196
__Flags__
197197
| Long | Short | Description |
198198
| :--- | :---- | :---------- |
199-
| `--auto-start` | `-a` | Automatically start the project if it is not running |
200-
| `--ide` | `-i` | Specify the IDE (vscode, browser, cursor, ssh, clion, goland, intellij, phpstorm, pycharm, rider, rubymine, webstorm) |
199+
| `--ide` | `-i` | Specify the IDE (vscode, browser, cursor, ssh, jupyter, fleet, clion, goland, intellij, phpstorm, pycharm, rider, rubymine, webstorm) |
200+
| `--yes` | `-y` | Automatically confirm any prompts |
201201
| `--help` | | help for daytona |
202202

203203
## daytona container-registry
@@ -275,11 +275,12 @@ __Flags__
275275
| `--custom-image-user` | | Create the project with the custom image user passed as the flag value; Requires setting --custom-image flag as well |
276276
| `--devcontainer-path` | | Automatically assign the devcontainer builder with the path passed as the flag value |
277277
| `--env` | | Specify environment variables (e.g. --env 'KEY1=VALUE1' --env 'KEY2=VALUE2' ...') |
278-
| `--ide` | `-i` | Specify the IDE (vscode, browser, cursor, ssh, clion, goland, intellij, phpstorm, pycharm, rider, rubymine, webstorm) |
278+
| `--ide` | `-i` | Specify the IDE (vscode, browser, cursor, ssh, jupyter, fleet, clion, goland, intellij, phpstorm, pycharm, rider, rubymine, webstorm) |
279279
| `--manual` | | Manually enter the Git repository |
280280
| `--multi-project` | | Workspace with multiple projects/repos |
281281
| `--name` | | Specify the workspace name |
282282
| `--target` | `-t` | Specify the target (e.g. 'local') |
283+
| `--yes` | `-y` | Automatically confirm any prompts |
283284
| `--help` | | help for daytona |
284285

285286
## daytona delete
@@ -743,6 +744,7 @@ daytona provider install [flags]
743744
__Flags__
744745
| Long | Short | Description |
745746
| :--- | :---- | :---------- |
747+
| `--yes` | `-y` | Automatically confirm any prompts |
746748
| `--help` | | help for daytona |
747749

748750
## daytona provider list
@@ -920,7 +922,7 @@ daytona ssh [WORKSPACE] [PROJECT] [CMD...] [flags]
920922
__Flags__
921923
| Long | Short | Description |
922924
| :--- | :---- | :---------- |
923-
| `--auto-start` | `-a` | Automatically start the project if it is not running |
925+
| `--yes` | `-y` | Automatically confirm any prompts |
924926
| `--help` | | help for daytona |
925927

926928
## daytona start
@@ -937,6 +939,7 @@ __Flags__
937939
| `--all` | `-a` | Start all workspaces |
938940
| `--code` | `-c` | Open the workspace in the IDE after workspace start |
939941
| `--project` | `-p` | Start a single project in the workspace (project name) |
942+
| `--yes` | `-y` | Automatically confirm any prompts |
940943
| `--help` | | help for daytona |
941944

942945
## daytona stop

0 commit comments

Comments
 (0)