From 3725e9255082fa53dad0d45bd0bb55ff854aee61 Mon Sep 17 00:00:00 2001 From: Jeffrey Aven Date: Mon, 16 Mar 2026 16:41:10 +1100 Subject: [PATCH 1/3] bumped version --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a15ac09..a4de353 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1809,7 +1809,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "stackql-deploy" -version = "2.0.1" +version = "2.0.2" dependencies = [ "base64", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 5423627..a84c283 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stackql-deploy" -version = "2.0.1" +version = "2.0.2" edition = "2021" rust-version = "1.75" description = "Infrastructure-as-code framework for declarative cloud resource management using StackQL" From 89b7156205e2fd27bb61b6aa2379dc9cf0aa8f2a Mon Sep 17 00:00:00 2001 From: Jeffrey Aven Date: Mon, 16 Mar 2026 16:52:32 +1100 Subject: [PATCH 2/3] docs site update --- website/docs/{install.md => installing-stackql-deploy.md} | 2 +- website/docusaurus.config.js | 2 +- website/sidebars.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename website/docs/{install.md => installing-stackql-deploy.md} (98%) diff --git a/website/docs/install.md b/website/docs/installing-stackql-deploy.md similarity index 98% rename from website/docs/install.md rename to website/docs/installing-stackql-deploy.md index e7a5832..6c7cc9f 100644 --- a/website/docs/install.md +++ b/website/docs/installing-stackql-deploy.md @@ -1,5 +1,5 @@ --- -id: install +id: installing-stackql-deploy title: Install hide_title: false hide_table_of_contents: false diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js index 91d4328..a0b87d3 100644 --- a/website/docusaurus.config.js +++ b/website/docusaurus.config.js @@ -93,7 +93,7 @@ const config = { favicon: 'img/favicon.ico', staticDirectories: ['static'], url: 'https://stackql-deploy.io', - organizationName: 'stackql-labs', + organizationName: 'stackql', projectName: 'stackql-deploy-rs', onBrokenLinks: 'warn', diff --git a/website/sidebars.js b/website/sidebars.js index c744887..520488e 100644 --- a/website/sidebars.js +++ b/website/sidebars.js @@ -14,7 +14,7 @@ const sidebars = { }, { type: 'doc', - id: 'install', + id: 'installing-stackql-deploy', label: 'Install', }, { From 55bc98f97dc5c06cfd433bf2a00a1be819ef996b Mon Sep 17 00:00:00 2001 From: Jeffrey Aven Date: Mon, 16 Mar 2026 16:56:35 +1100 Subject: [PATCH 3/3] docs site update --- website/docs/getting-started.md | 2 +- website/docs/installing-stackql-deploy.md | 87 ----------------------- website/sidebars.js | 7 +- 3 files changed, 2 insertions(+), 94 deletions(-) delete mode 100644 website/docs/installing-stackql-deploy.md diff --git a/website/docs/getting-started.md b/website/docs/getting-started.md index dc03a5c..f7fe366 100644 --- a/website/docs/getting-started.md +++ b/website/docs/getting-started.md @@ -60,7 +60,7 @@ Download the latest `.msi` installer from the [GitHub Releases](https://github.c -For more installation options, see the [__Install__](/install) page. +For more installation options, see the [__GitHub Releases__](https://github.com/stackql-labs/stackql-deploy-rs/releases) page. ## How `stackql-deploy` works diff --git a/website/docs/installing-stackql-deploy.md b/website/docs/installing-stackql-deploy.md deleted file mode 100644 index 6c7cc9f..0000000 --- a/website/docs/installing-stackql-deploy.md +++ /dev/null @@ -1,87 +0,0 @@ ---- -id: installing-stackql-deploy -title: Install -hide_title: false -hide_table_of_contents: false -description: Installation options for StackQL Deploy across all platforms. -tags: [] -draft: false -unlisted: false ---- - -import Tabs from '@theme/Tabs'; -import TabItem from '@theme/TabItem'; - -# Install `stackql-deploy` - -`stackql-deploy` is distributed as a standalone, statically compiled binary with no runtime dependencies. Choose your preferred installation method below. - -## Package Managers - - - - -```bash -brew tap stackql/tap -brew install stackql-deploy -``` - -To upgrade to the latest version: - -```bash -brew upgrade stackql-deploy -``` - - - - -```powershell -choco install stackql-deploy -``` - -To upgrade to the latest version: - -```powershell -choco upgrade stackql-deploy -``` - - - - -## Platform-Specific Installers - -### macOS - -Download the latest `.pkg` installer from the [GitHub Releases](https://github.com/stackql-labs/stackql-deploy-rs/releases) page. The installer supports both Intel and Apple Silicon Macs. - -### Windows - -Download the latest `.msi` installer from the [GitHub Releases](https://github.com/stackql-labs/stackql-deploy-rs/releases) page. - -### Linux - -Download the latest archive for your architecture from the [GitHub Releases](https://github.com/stackql-labs/stackql-deploy-rs/releases) page: - -```bash -# x86_64 -curl -L https://github.com/stackql-labs/stackql-deploy-rs/releases/latest/download/stackql-deploy-linux-x86_64.tar.gz | tar xz -sudo mv stackql-deploy /usr/local/bin/ - -# aarch64 -curl -L https://github.com/stackql-labs/stackql-deploy-rs/releases/latest/download/stackql-deploy-linux-aarch64.tar.gz | tar xz -sudo mv stackql-deploy /usr/local/bin/ -``` - -## GitHub Actions - -For CI/CD workflows, see the [GitHub Actions](/github-actions) documentation for using `stackql-deploy` in your pipelines. - -## Verify Installation - -After installation, verify that `stackql-deploy` is available: - -```bash -stackql-deploy info -``` - -This will display the installed version and environment details. diff --git a/website/sidebars.js b/website/sidebars.js index 520488e..3484f55 100644 --- a/website/sidebars.js +++ b/website/sidebars.js @@ -12,12 +12,7 @@ const sidebars = { id: 'index', label: 'Welcome', }, - { - type: 'doc', - id: 'installing-stackql-deploy', - label: 'Install', - }, - { +{ type: 'doc', id: 'getting-started', label: 'Getting Started',