Skip to content

Releases: stackql/stackql-deploy-rs

v2.0.3

16 Mar 09:10

Choose a tag to compare

stackql-deploy v2.0.3

What's new

This release ships the Rust rewrite of stackql-deploy — a complete
ground-up reimplementation that replaces the original Python package.

Key improvements over the Python version:

  • Single self-contained binary — no Python runtime, pip, or virtualenv required.
    Drop the binary on any supported platform and run.
  • Faster startup and execution — Rust compile-time optimisations mean commands
    that previously took seconds to initialise now start instantly.
  • Smaller install footprint — the stripped Linux x86_64 binary is under 10 MB;
    no transitive Python dependencies to manage.
  • Statically linked on Linux — works on any glibc >= 2.17 distro without
    installing extra system libraries.
  • Native Windows and macOS ARM64 support — pre-built for all five major targets
    (see assets below).

Download

Platform Architecture Asset
Linux x86_64 stackql-deploy-linux-x86_64.tar.gz
Linux arm64 stackql-deploy-linux-arm64.tar.gz
macOS Apple Silicon (arm64) stackql-deploy-macos-arm64.tar.gz
macOS Intel (x86_64) stackql-deploy-macos-x86_64.tar.gz
Windows x86_64 stackql-deploy-windows-x86_64.zip

Each archive contains a single binary named stackql-deploy (or
stackql-deploy.exe on Windows). Verify your download with SHA256SUMS.

Migrating from the Python package

If you are currently using the Python package on PyPI, please migrate to this
release. The Python package is now deprecated and will no longer receive updates:
https://pypi.org/project/stackql-deploy/

The CLI interface is fully compatible — existing stackql_manifest.yml files and
project layouts work without modification.

Install (quick)

Linux / macOS:

curl -sSL https://github.com/stackql/stackql-deploy/releases/download/v2.0.3/stackql-deploy-linux-x86_64.tar.gz \
  | tar -xz -C /usr/local/bin

Windows (PowerShell):

Invoke-WebRequest -Uri https://github.com/stackql/stackql-deploy/releases/download/v2.0.3/stackql-deploy-windows-x86_64.zip `
  -OutFile stackql-deploy.zip
Expand-Archive stackql-deploy.zip -DestinationPath $env:LOCALAPPDATA\stackql-deploy

Or install via cargo:

cargo install stackql-deploy

v2.0.2

16 Mar 07:18

Choose a tag to compare

stackql-deploy v2.0.2

What's new

This release ships the Rust rewrite of stackql-deploy — a complete
ground-up reimplementation that replaces the original Python package.

Key improvements over the Python version:

  • Single self-contained binary — no Python runtime, pip, or virtualenv required.
    Drop the binary on any supported platform and run.
  • Faster startup and execution — Rust compile-time optimisations mean commands
    that previously took seconds to initialise now start instantly.
  • Smaller install footprint — the stripped Linux x86_64 binary is under 10 MB;
    no transitive Python dependencies to manage.
  • Statically linked on Linux — works on any glibc >= 2.17 distro without
    installing extra system libraries.
  • Native Windows and macOS ARM64 support — pre-built for all five major targets
    (see assets below).

Download

Platform Architecture Asset
Linux x86_64 stackql-deploy-linux-x86_64.tar.gz
Linux arm64 stackql-deploy-linux-arm64.tar.gz
macOS Apple Silicon (arm64) stackql-deploy-macos-arm64.tar.gz
macOS Intel (x86_64) stackql-deploy-macos-x86_64.tar.gz
Windows x86_64 stackql-deploy-windows-x86_64.zip

Each archive contains a single binary named stackql-deploy (or
stackql-deploy.exe on Windows). Verify your download with SHA256SUMS.

Migrating from the Python package

If you are currently using the Python package on PyPI, please migrate to this
release. The Python package is now deprecated and will no longer receive updates:
https://pypi.org/project/stackql-deploy/

The CLI interface is fully compatible — existing stackql_manifest.yml files and
project layouts work without modification.

Install (quick)

Linux / macOS:

curl -sSL https://github.com/stackql/stackql-deploy/releases/download/v2.0.2/stackql-deploy-linux-x86_64.tar.gz \
  | tar -xz -C /usr/local/bin

Windows (PowerShell):

Invoke-WebRequest -Uri https://github.com/stackql/stackql-deploy/releases/download/v2.0.2/stackql-deploy-windows-x86_64.zip `
  -OutFile stackql-deploy.zip
Expand-Archive stackql-deploy.zip -DestinationPath $env:LOCALAPPDATA\stackql-deploy

Or install via cargo:

cargo install stackql-deploy

v2.0.1

16 Mar 00:55

Choose a tag to compare

stackql-deploy v2.0.1

What's new

This release ships the Rust rewrite of stackql-deploy — a complete
ground-up reimplementation that replaces the original Python package.

Key improvements over the Python version:

  • Single self-contained binary — no Python runtime, pip, or virtualenv required.
    Drop the binary on any supported platform and run.
  • Faster startup and execution — Rust compile-time optimisations mean commands
    that previously took seconds to initialise now start instantly.
  • Smaller install footprint — the stripped Linux x86_64 binary is under 10 MB;
    no transitive Python dependencies to manage.
  • Statically linked on Linux — works on any glibc ≥ 2.17 distro without
    installing extra system libraries.
  • Native Windows and macOS ARM64 support — pre-built for all five major targets
    (see assets below).

Download

Platform Architecture Asset
Linux x86_64 stackql-deploy-linux-x86_64.tar.gz
Linux arm64 stackql-deploy-linux-arm64.tar.gz
macOS Apple Silicon (arm64) stackql-deploy-macos-arm64.tar.gz
macOS Intel (x86_64) stackql-deploy-macos-x86_64.tar.gz
Windows x86_64 stackql-deploy-windows-x86_64.zip

Each archive contains a single binary named stackql-deploy (or
stackql-deploy.exe on Windows). Verify your download with SHA256SUMS.

Migrating from the Python package

If you are currently using the Python package on PyPI, please migrate to this
release. The Python package is now deprecated and will no longer receive updates:
https://pypi.org/project/stackql-deploy/

The CLI interface is fully compatible — existing stackql_manifest.yml files and
project layouts work without modification.

Install (quick)

Linux / macOS:

curl -sSL https://github.com/stackql/stackql-deploy/releases/download/v2.0.1/stackql-deploy-linux-x86_64.tar.gz \
  | tar -xz -C /usr/local/bin

Windows (PowerShell):

Invoke-WebRequest -Uri https://github.com/stackql/stackql-deploy/releases/download/v2.0.1/stackql-deploy-windows-x86_64.zip `
  -OutFile stackql-deploy.zip
Expand-Archive stackql-deploy.zip -DestinationPath $env:LOCALAPPDATA\stackql-deploy

Or install via cargo:

cargo install stackql-deploy

v2.0.0

16 Mar 00:36
7b5d5b2

Choose a tag to compare

stackql-deploy v2.0.0

What's new

This release ships the Rust rewrite of stackql-deploy — a complete
ground-up reimplementation that replaces the original Python package.

Key improvements over the Python version:

  • Single self-contained binary — no Python runtime, pip, or virtualenv required.
    Drop the binary on any supported platform and run.
  • Faster startup and execution — Rust compile-time optimisations mean commands
    that previously took seconds to initialise now start instantly.
  • Smaller install footprint — the stripped Linux x86_64 binary is under 10 MB;
    no transitive Python dependencies to manage.
  • Statically linked on Linux — works on any glibc ≥ 2.17 distro without
    installing extra system libraries.
  • Native Windows and macOS ARM64 support — pre-built for all five major targets
    (see assets below).

Download

Platform Architecture Asset
Linux x86_64 stackql-deploy-linux-x86_64.tar.gz
Linux arm64 stackql-deploy-linux-arm64.tar.gz
macOS Apple Silicon (arm64) stackql-deploy-macos-arm64.tar.gz
macOS Intel (x86_64) stackql-deploy-macos-x86_64.tar.gz
Windows x86_64 stackql-deploy-windows-x86_64.zip

Each archive contains a single binary named stackql-deploy (or
stackql-deploy.exe on Windows). Verify your download with SHA256SUMS.

Migrating from the Python package

If you are currently using the Python package on PyPI, please migrate to this
release. The Python package is now deprecated and will no longer receive updates:
https://pypi.org/project/stackql-deploy/

The CLI interface is fully compatible — existing stackql_manifest.yml files and
project layouts work without modification.

Install (quick)

Linux / macOS:

curl -sSL https://github.com/stackql/stackql-deploy/releases/download/v2.0.0/stackql-deploy-linux-x86_64.tar.gz \
  | tar -xz -C /usr/local/bin

Windows (PowerShell):

Invoke-WebRequest -Uri https://github.com/stackql/stackql-deploy/releases/download/v2.0.0/stackql-deploy-windows-x86_64.zip `
  -OutFile stackql-deploy.zip
Expand-Archive stackql-deploy.zip -DestinationPath $env:LOCALAPPDATA\stackql-deploy

Or install via cargo:

cargo install stackql-deploy