Skip to content

Commit

Permalink
chore: release v0.35.0
Browse files Browse the repository at this point in the history
Signed-off-by: Toma Puljak <[email protected]>
  • Loading branch information
Tpuljak committed Sep 30, 2024
1 parent 2e71fc3 commit ebba89d
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "docs",
"license": "Apache-2.0",
"type": "module",
"version": "0.33.0",
"version": "0.35.0",
"scripts": {
"postinstall": "is-ci || husky",
"dev": "astro dev --host",
Expand Down
8 changes: 4 additions & 4 deletions src/content/docs/installation/installation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ You can install Daytona by manually downloading the binary and placing it in you

```shell
# x86-64
curl -sf -L https://download.daytona.io/daytona/v0.33/daytona-linux-amd64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.35/daytona-linux-amd64 -o daytona
# AArch64
curl -sf -L https://download.daytona.io/daytona/v0.33/daytona-linux-arm64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.35/daytona-linux-arm64 -o daytona
```

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

```shell
# x86-64/Intel-based
curl -sf -L https://download.daytona.io/daytona/v0.33/daytona-darwin-amd64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.35/daytona-darwin-amd64 -o daytona
# AArch64/Apple Silicon
curl -sf -L https://download.daytona.io/daytona/v0.33/daytona-darwin-arm64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.35/daytona-darwin-arm64 -o daytona
```

</Aside>
Expand Down
6 changes: 3 additions & 3 deletions src/content/docs/installation/method/script-powershell.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const partial = true
```powershell
$architecture = if ($env:PROCESSOR_ARCHITECTURE -eq "AMD64") { "amd64" } else { "arm64" }
md -Force "$Env:APPDATA\bin\daytona"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.33/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.35/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
$env:Path += ";" + $Env:APPDATA + "\bin\daytona"; [Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
daytona serve;
```
Expand All @@ -21,9 +21,9 @@ You can install Daytona by manually downloading the binary and placing it in you

```powershell
# x86-64
curl -sf -L https://download.daytona.io/daytona/v0.33/daytona-windows-amd64.exe -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.35/daytona-windows-amd64.exe -o daytona
# AArch64
curl -sf -L https://download.daytona.io/daytona/v0.33/daytona-windows-arm64.exe -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.35/daytona-windows-arm64.exe -o daytona
```

</Aside>
8 changes: 8 additions & 0 deletions src/content/docs/reference/api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ Create a build

Delete ALL builds

### Parameters

| Name | Location | Required | Type | Description |
| :--- | :------- | :------- | :--- | :---------- |
| `force` | query | undefined | boolean | Force |

### Responses

| Status Code | Description |
Expand All @@ -91,6 +97,7 @@ Delete builds
| Name | Location | Required | Type | Description |
| :--- | :------- | :------- | :--- | :---------- |
| `prebuildId` | path | true | string | Prebuild ID |
| `force` | query | undefined | boolean | Force |

### Responses

Expand Down Expand Up @@ -123,6 +130,7 @@ Delete build
| Name | Location | Required | Type | Description |
| :--- | :------- | :------- | :--- | :---------- |
| `buildId` | path | true | string | Build ID |
| `force` | query | undefined | boolean | Force |

### Responses

Expand Down
20 changes: 17 additions & 3 deletions src/content/docs/reference/cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ __Flags__
| Long | Short | Description |
| :--- | :---- | :---------- |
| `--all` | `-a` | Delete ALL builds |
| `--force` | `-f` | Force delete build |
| `--prebuild-id` | | Delete ALL builds from prebuild |
| `--help` | | help for daytona |

Expand Down Expand Up @@ -276,14 +277,14 @@ __Flags__
Create a workspace

```shell
daytona create [REPOSITORY_URL] [flags]
daytona create [REPOSITORY_URL | PROJECT_CONFIG_NAME]... [flags]
```

__Flags__
| Long | Short | Description |
| :--- | :---- | :---------- |
| `--blank` | | Create a blank project without using existing configurations |
| `--branch` | | Specify the Git branch to use in the project |
| `--branch` | | Specify the Git branches to use in the projects |
| `--builder` | | Specify the builder (currently auto/devcontainer/none) |
| `--code` | `-c` | Open the workspace in the IDE after workspace creation |
| `--custom-image` | | Create the project with the custom image passed as the flag value; Requires setting --custom-image-user flag as well |
Expand Down Expand Up @@ -655,7 +656,6 @@ daytona project-config add [flags]
__Flags__
| Long | Short | Description |
| :--- | :---- | :---------- |
| `--branch` | | Specify the Git branch to use in the project |
| `--builder` | | Specify the builder (currently auto/devcontainer/none) |
| `--custom-image` | | Create the project with the custom image passed as the flag value; Requires setting --custom-image-user flag as well |
| `--custom-image-user` | | Create the project with the custom image user passed as the flag value; Requires setting --custom-image flag as well |
Expand Down Expand Up @@ -818,6 +818,20 @@ __Flags__
| `--yes` | `-y` | Execute purge without prompt |
| `--help` | | help for daytona |

## daytona restart

Restart a workspace

```shell
daytona restart [WORKSPACE] [flags]
```

__Flags__
| Long | Short | Description |
| :--- | :---- | :---------- |
| `--project` | `-p` | Restart a single project in the workspace (project name) |
| `--help` | | help for daytona |

## daytona serve

Run the server process in the current terminal session
Expand Down

0 comments on commit ebba89d

Please sign in to comment.