Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
mkdir -p quant.cpp-macos-arm64
cp build/quant quant.cpp-macos-arm64/
cp build/quant-server quant.cpp-macos-arm64/
cp build/quant-server-unified quant.cpp-macos-arm64/ 2>/dev/null || true
cp LICENSE quant.cpp-macos-arm64/ 2>/dev/null || true
cp README.md quant.cpp-macos-arm64/ 2>/dev/null || true
tar czf quant.cpp-macos-arm64.tar.gz quant.cpp-macos-arm64/
Expand Down Expand Up @@ -59,6 +60,7 @@ jobs:
mkdir -p quant.cpp-linux-x86_64
cp build/quant quant.cpp-linux-x86_64/
cp build/quant-server quant.cpp-linux-x86_64/
cp build/quant-server-unified quant.cpp-linux-x86_64/ 2>/dev/null || true
cp LICENSE quant.cpp-linux-x86_64/ 2>/dev/null || true
cp README.md quant.cpp-linux-x86_64/ 2>/dev/null || true
tar czf quant.cpp-linux-x86_64.tar.gz quant.cpp-linux-x86_64/
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "quantcpp"
version = "0.12.1"
version = "0.13.0"
description = "Single-header LLM inference engine with KV cache compression (7× compression at fp32 parity)"
readme = "README.md"
license = { text = "Apache-2.0" }
Expand Down
Loading
Loading