Skip to content

Commit

Permalink
chore: release v0.39.0
Browse files Browse the repository at this point in the history
Signed-off-by: Toma Puljak <[email protected]>
  • Loading branch information
Tpuljak committed Oct 15, 2024
1 parent c77e871 commit 5b8e06c
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 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.38.0",
"version": "0.39.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.38/daytona-linux-amd64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.39/daytona-linux-amd64 -o daytona
# AArch64
curl -sf -L https://download.daytona.io/daytona/v0.38/daytona-linux-arm64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.39/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.38/daytona-darwin-amd64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.39/daytona-darwin-amd64 -o daytona
# AArch64/Apple Silicon
curl -sf -L https://download.daytona.io/daytona/v0.38/daytona-darwin-arm64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.39/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.38/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.39/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.38/daytona-windows-amd64.exe -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.39/daytona-windows-amd64.exe -o daytona
# AArch64
curl -sf -L https://download.daytona.io/daytona/v0.38/daytona-windows-arm64.exe -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.39/daytona-windows-arm64.exe -o daytona
```

</Aside>
12 changes: 10 additions & 2 deletions src/content/docs/tools/cli.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -524,13 +524,17 @@ __Flags__
Add a prebuild configuration

```shell
daytona prebuild add [flags]
daytona prebuild add [PROJECT_CONFIG] [flags]
```

__Flags__
| Long | Short | Description |
| :--- | :---- | :---------- |
| `--branch` | `-b` | Git branch for the prebuild |
| `--commit-interval` | `-c` | Commit interval for running a prebuild - leave blank to ignore push events |
| `--retention` | `-r` | Maximum number of resulting builds stored at a time |
| `--run` | | Run the prebuild once after adding it |
| `--trigger-files` | `-t` | Full paths of files whose changes should explicitly trigger a prebuild |
| `--help` | | help for daytona |

## daytona prebuild delete
Expand Down Expand Up @@ -580,13 +584,17 @@ __Flags__
Update a prebuild configuration

```shell
daytona prebuild update [flags]
daytona prebuild update [PROJECT_CONFIG] [PREBUILD_ID] [flags]
```

__Flags__
| Long | Short | Description |
| :--- | :---- | :---------- |
| `--branch` | `-b` | Git branch for the prebuild |
| `--commit-interval` | `-c` | Commit interval for running a prebuild - leave blank to ignore push events |
| `--retention` | `-r` | Maximum number of resulting builds stored at a time |
| `--run` | | Run the prebuild once after updating it |
| `--trigger-files` | `-t` | Full paths of files whose changes should explicitly trigger a prebuild |
| `--help` | | help for daytona |

## daytona profile
Expand Down

0 comments on commit 5b8e06c

Please sign in to comment.