From 1d0a90ab2e95dbd3920b9750bb3579d0d79d5642 Mon Sep 17 00:00:00 2001 From: Toma Puljak Date: Fri, 15 Nov 2024 14:37:03 +0000 Subject: [PATCH] chore: release v0.45.0 Signed-off-by: Toma Puljak --- package.json | 2 +- src/content/docs/installation/installation.mdx | 14 +++++++------- .../docs/installation/method/script-powershell.mdx | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/package.json b/package.json index 5bf41f3c..95c1c18d 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "docs", "license": "Apache-2.0", "type": "module", - "version": "0.43.0", + "version": "0.45.0", "scripts": { "postinstall": "is-ci || husky", "dev": "astro dev --host", diff --git a/src/content/docs/installation/installation.mdx b/src/content/docs/installation/installation.mdx index 8c9fe2dc..1eaa7728 100644 --- a/src/content/docs/installation/installation.mdx +++ b/src/content/docs/installation/installation.mdx @@ -32,9 +32,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.42/daytona-linux-amd64 -o daytona +curl -sf -L https://download.daytona.io/daytona/v0.45/daytona-linux-amd64 -o daytona # ARM64 -curl -sf -L https://download.daytona.io/daytona/v0.42/daytona-linux-arm64 -o daytona +curl -sf -L https://download.daytona.io/daytona/v0.45/daytona-linux-arm64 -o daytona ``` ::: @@ -57,9 +57,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.42/daytona-darwin-amd64 -o daytona +curl -sf -L https://download.daytona.io/daytona/v0.45/daytona-darwin-amd64 -o daytona # ARM64/Apple Silicon -curl -sf -L https://download.daytona.io/daytona/v0.42/daytona-darwin-arm64 -o daytona +curl -sf -L https://download.daytona.io/daytona/v0.45/daytona-darwin-arm64 -o daytona ``` ::: @@ -75,7 +75,7 @@ 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.42/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe"; +Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.45/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; ``` @@ -85,9 +85,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.42/daytona-windows-amd64.exe -o daytona +curl -sf -L https://download.daytona.io/daytona/v0.45/daytona-windows-amd64.exe -o daytona # AArch64 -curl -sf -L https://download.daytona.io/daytona/v0.42/daytona-windows-arm64.exe -o daytona +curl -sf -L https://download.daytona.io/daytona/v0.45/daytona-windows-arm64.exe -o daytona ``` ::: diff --git a/src/content/docs/installation/method/script-powershell.mdx b/src/content/docs/installation/method/script-powershell.mdx index 4c9bca6f..747a8d0e 100644 --- a/src/content/docs/installation/method/script-powershell.mdx +++ b/src/content/docs/installation/method/script-powershell.mdx @@ -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.43/daytona-windows-$architecture.exe" -OutFile "$Env:APPDATA\bin\daytona\daytona.exe"; +Invoke-WebRequest -URI "https://download.daytona.io/daytona/v0.45/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; ``` @@ -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.43/daytona-windows-amd64.exe -o daytona +curl -sf -L https://download.daytona.io/daytona/v0.45/daytona-windows-amd64.exe -o daytona # AArch64 -curl -sf -L https://download.daytona.io/daytona/v0.43/daytona-windows-arm64.exe -o daytona +curl -sf -L https://download.daytona.io/daytona/v0.45/daytona-windows-arm64.exe -o daytona ```