> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sdf.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Latest Release

## SDF CLI

SDF is compiled for various architectures, with various optimizations. Extensive
test suites are run as part of releases.

The latest stable release is:
v0.10.8

The latest preview release is:
v0.10.8-p

### Release Channels

SDF CLI offers two release channels:

* **Stable**: Our production-ready releases that have undergone thorough testing. By default, all installations and updates will use the stable channel, ensuring reliable and consistent behavior for production environments.
* **Preview**: Early access to new features and improvements. While preview releases are tested, they may contain experimental features that are still being refined. Perfect for users who want to test upcoming features and provide feedback.

### Latest Builds

| Architecture       | Status | Version | Download                                                                                         |
| ------------------ | ------ | ------- | ------------------------------------------------------------------------------------------------ |
| Linux Intel X86-64 | ✅      | v0.10.8 | [Download](https://cdn.sdf.com/releases/download/sdf-v0.10.8-x86_64-unknown-linux-musl.tar.gz)   |
| Linux Arm ARM-64   | ✅      | v0.10.8 | [Download](https://cdn.sdf.com/releases/download/sdf-v0.10.8-arm-unknown-linux-gnueabihf.tar.gz) |
| Apple Intel X86-64 | ✅      | v0.10.8 | [Download](https://cdn.sdf.com/releases/download/sdf-v0.10.8-x86_64-apple-darwin.tar.gz)         |
| Apple Arm AARCh-64 | ✅      | v0.10.8 | [Download](https://cdn.sdf.com/releases/download/sdf-v0.10.8-aarch64-apple-darwin.tar.gz)        |

### Latest Preview Builds

| Architecture       | Status | Version   | Download                                                                                           |
| ------------------ | ------ | --------- | -------------------------------------------------------------------------------------------------- |
| Linux Intel X86-64 | ✅      | v0.10.8-p | [Download](https://cdn.sdf.com/releases/download/sdf-v0.10.8-p-x86_64-unknown-linux-musl.tar.gz)   |
| Linux Arm ARM-64   | ✅      | v0.10.8-p | [Download](https://cdn.sdf.com/releases/download/sdf-v0.10.8-p-arm-unknown-linux-gnueabihf.tar.gz) |
| Apple Intel X86-64 | ✅      | v0.10.8-p | [Download](https://cdn.sdf.com/releases/download/sdf-v0.10.8-p-x86_64-apple-darwin.tar.gz)         |
| Apple Arm AARCh-64 | ✅      | v0.10.8-p | [Download](https://cdn.sdf.com/releases/download/sdf-v0.10.8-p-aarch64-apple-darwin.tar.gz)        |

#### Docker Images

We provide Docker images for Linux in two architectures:

##### x86\_64

```bash theme={null}
# Pull the x86_64 Linux image
docker pull sdflabs/sdf-x86_64-unknown-linux-musl:<version>
```

[View on Docker Hub →](https://hub.docker.com/r/sdflabs/sdf-x86_64-unknown-linux-musl)

##### ARM64

```bash theme={null}
# Pull the ARM64 Linux image
docker pull sdflabs/sdf-aarch64-unknown-linux-gnu:<version>
```

[View on Docker Hub →](https://hub.docker.com/r/sdflabs/sdf-aarch64-unknown-linux-gnu)

Example usage:

```bash theme={null}
# Run the CLI using Docker
docker run sdflabs/sdf-x86_64-unknown-linux-musl:<version> sdf --help
```

### Release Notes and History

You can view detailed release notes for all versions, including both stable and preview releases, on our [GitHub Releases page](https://github.com/sdf-labs/sdf-cli/releases). Each release includes:

* Detailed changelog of new features and improvements
* Bug fixes and performance enhancements
* Breaking changes and migration notes (if applicable)
* List of contributors

We maintain a rigorous testing process to ensure that features graduating from preview to stable releases meet our quality standards. This dual-channel approach allows us to innovate quickly while maintaining stability for production users.
