Skip to content

Commit

Permalink
chore: release v0.50.0
Browse files Browse the repository at this point in the history
Signed-off-by: Toma Puljak <toma.puljak@hotmail.com>
Tpuljak committed Dec 20, 2024
1 parent 5570ec9 commit 1e486ac
Showing 9 changed files with 248 additions and 191 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
"name": "docs",
"license": "Apache-2.0",
"type": "module",
"version": "0.49.0",
"version": "0.50.0",
"scripts": {
"postinstall": "is-ci || husky",
"dev": "astro dev --host",
45 changes: 30 additions & 15 deletions public/llms-full.txt
Original file line number Diff line number Diff line change
@@ -2449,6 +2449,10 @@ Each operating system supports both `x86_64` and `ARM64` architectures.

Daytona leverages [Docker](https://docs.docker.com/engine/install/) to create and manage isolated development environments.

## Installation

<br />

<Tabs>
<TabItem label="Linux">

@@ -2463,17 +2467,13 @@ 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.49/daytona-linux-amd64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.50/daytona-linux-amd64 -o daytona
# ARM64
curl -sf -L https://download.daytona.io/daytona/v0.49/daytona-linux-arm64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.50/daytona-linux-arm64 -o daytona
```

:::

<br />

<Uninstall />

</TabItem>
<TabItem label="MacOS">

@@ -2488,25 +2488,21 @@ 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.49/daytona-darwin-amd64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.50/daytona-darwin-amd64 -o daytona
# ARM64/Apple Silicon
curl -sf -L https://download.daytona.io/daytona/v0.49/daytona-darwin-arm64 -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.50/daytona-darwin-arm64 -o daytona
```

:::

<br />

<Uninstall />

</TabItem>
<TabItem label="Windows">
Install Daytona on Windows using the following PowerShell script:

```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.49/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe";
Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.50/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;
```
@@ -2516,9 +2512,9 @@ You can install Daytona by manually downloading the binary and placing it in you

```sh
# x86-64
curl -sf -L https://download.daytona.io/daytona/v0.49/daytona-windows-amd64.exe -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.50/daytona-windows-amd64.exe -o daytona
# AArch64
curl -sf -L https://download.daytona.io/daytona/v0.49/daytona-windows-arm64.exe -o daytona
curl -sf -L https://download.daytona.io/daytona/v0.50/daytona-windows-arm64.exe -o daytona
```

:::
@@ -2537,6 +2533,10 @@ If you are using Windows Subsystem for Linux (WSL), you can follow the [instruct
</TabItem>
</Tabs>

## Uninstallation

<Uninstall />

---
title: Telemetry
description: Information about telemetry data gathered by Daytona.
@@ -3796,6 +3796,7 @@ daytona target set [flags]
__Flags__
| Long | Short | Description |
| :--- | :---- | :---------- |
| `--file` | `-f` | Path to JSON file for target configuration, use '-' to read from stdin |
| `--help` | | help for daytona |


@@ -3838,6 +3839,20 @@ __Flags__
| `--help` | | help for daytona |


## daytona update
Update Daytona CLI

```shell
daytona update [flags]
```

__Flags__
| Long | Short | Description |
| :--- | :---- | :---------- |
| `--version` | `-v` | Version to update to |
| `--help` | | help for daytona |


## daytona use
Use profile [PROFILE_NAME]

3 changes: 3 additions & 0 deletions public/llms.txt
Original file line number Diff line number Diff line change
@@ -62,6 +62,8 @@
- [Fly](https://daytona.io/docs/configuration/targets#fly)
- [Documentation Home](https://daytona.io/docs/index)
- [Installation](https://daytona.io/docs/installation/installation)
- [Installation](https://daytona.io/docs/installation/installation#installation)
- [Uninstallation](https://daytona.io/docs/installation/installation#uninstallation)
- [Telemetry](https://daytona.io/docs/misc/telemetry)
- [The Goal](https://daytona.io/docs/misc/telemetry#the-goal)
- [Gathering Policy](https://daytona.io/docs/misc/telemetry#gathering-policy)
@@ -153,6 +155,7 @@
- [daytona telemetry](https://daytona.io/docs/tools/cli#daytona-telemetry)
- [daytona telemetry disable](https://daytona.io/docs/tools/cli#daytona-telemetry-disable)
- [daytona telemetry enable](https://daytona.io/docs/tools/cli#daytona-telemetry-enable)
- [daytona update](https://daytona.io/docs/tools/cli#daytona-update)
- [daytona use](https://daytona.io/docs/tools/cli#daytona-use)
- [daytona version](https://daytona.io/docs/tools/cli#daytona-version)
- [daytona whoami](https://daytona.io/docs/tools/cli#daytona-whoami)
Loading

0 comments on commit 1e486ac

Please sign in to comment.