Skip to content

Commit 25d1ad4

Browse files
committed
release: v2.1.0 — promote from rc1 to stable
Promote v2.1.0rc1 to a full stable release. All production-hardening fixes from the rc1 cycle are included: honest is_quantized reporting, architecture fallback fixes, pre-quantized repo detection, expanded model family support, real CI pipeline, and PEP 621 packaging. Co-authored-by: monkeycode-ai <monkeycode-ai@chaitin.com>
1 parent d026315 commit 25d1ad4

8 files changed

Lines changed: 12 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to QuantLLM are recorded here. The format follows
44
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and the project
55
adheres to [Semantic Versioning](https://semver.org/).
66

7-
## [Unreleased]production hardening on top of v2.1.0rc1
7+
## [2.1.0]2026-07-29
88

99
### Fixed
1010

@@ -93,3 +93,6 @@ Initial public release of the `turbo()` API and the GGUF / ONNX / MLX
9393
export pipeline. See the GitHub
9494
[releases page](https://github.com/codewithdark-git/QuantLLM/releases/tag/v2.0.0)
9595
for the full notes.
96+
97+
[2.1.0]: https://github.com/codewithdark-git/QuantLLM/compare/v2.0.0...v2.1.0
98+
[2.0.0]: https://github.com/codewithdark-git/QuantLLM/releases/tag/v2.0.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div align="center">
22
<img src="docs/images/1.png" alt="QuantLLM Logo" />
33

4-
# 🚀 QuantLLM v2.1 (pre-release)
4+
# 🚀 QuantLLM v2.1
55

66
**The Ultra-Fast LLM Quantization & Export Library**
77

@@ -139,7 +139,7 @@ Llama 2/3, Mistral, Mixtral, Qwen 1/2, Phi 1/2/3, Gemma, Falcon, DeepSeek, Yi, S
139139

140140
```
141141
╔════════════════════════════════════════════════════════════╗
142-
║ 🚀 QuantLLM v2.1.0rc1
142+
║ 🚀 QuantLLM v2.1.0
143143
║ Ultra-fast LLM Quantization & Export ║
144144
║ ✓ GGUF ✓ ONNX ✓ MLX ✓ SafeTensors ║
145145
╚════════════════════════════════════════════════════════════╝

docs/api/turbo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ When `verbose=True` (default), you'll see:
126126

127127
```
128128
╔════════════════════════════════════════════════════════════╗
129-
║ 🚀 QuantLLM v2.1.0rc1
129+
║ 🚀 QuantLLM v2.1.0
130130
╚════════════════════════════════════════════════════════════╝
131131

132132
📊 Loading: meta-llama/Llama-3.2-3B

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
project = "QuantLLM"
44
copyright = "2024, Dark Coder"
55
author = "Dark Coder"
6-
release = "2.1.0rc1"
6+
release = "2.1.0"
77

88
# Extensions
99
extensions = [

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Expected output:
9191
```
9292
╔════════════════════════════════════════════════════════════╗
9393
║ ║
94-
║ 🚀 QuantLLM v2.1.0rc1
94+
║ 🚀 QuantLLM v2.1.0
9595
║ Ultra-fast LLM Quantization & Export ║
9696
║ ║
9797
║ ✓ GGUF ✓ ONNX ✓ MLX ✓ SafeTensors ║

docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ quantllm.show_banner()
192192
```
193193
╔════════════════════════════════════════════════════════════╗
194194
║ ║
195-
║ 🚀 QuantLLM v2.1.0rc1
195+
║ 🚀 QuantLLM v2.1.0
196196
║ Ultra-fast LLM Quantization & Export ║
197197
║ ║
198198
║ ✓ GGUF ✓ ONNX ✓ MLX ✓ SafeTensors ║

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "quantllm"
7-
version = "2.1.0rc1"
7+
version = "2.1.0"
88
description = "Ultra-fast LLM quantization, fine-tuning, and deployment with one line of code"
99
readme = "README.md"
1010
license = {text = "MIT"}

quantllm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
# Configure logging (minimal by default)
7878
configure_logging("WARNING")
7979

80-
__version__ = "2.1.0rc1"
80+
__version__ = "2.1.0"
8181
__title__ = "QuantLLM"
8282
__description__ = "Ultra-fast LLM Quantization & Export (GGUF, ONNX, MLX)"
8383
__author__ = "Dark Coder"

0 commit comments

Comments
 (0)