From 3953fd1db6587cdf2d020cd299857a9de0dbd68e Mon Sep 17 00:00:00 2001 From: chopratejas Date: Sat, 28 Mar 2026 23:47:49 -0700 Subject: [PATCH] Bump to 0.5.9 - Fix telemetry beacon: use JWT anon key + plain INSERT (was silently failing since 0.5.6) - Fix cost tracker: use avg effective $/token for savings calculation - Add tokenBudget support to /v1/compress endpoint and TS SDK - Add OpenClaw ContextEngine plugin (@headroom-ai/openclaw) --- headroom/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/headroom/__init__.py b/headroom/__init__.py index 10d956f94..2b6e9c7b4 100644 --- a/headroom/__init__.py +++ b/headroom/__init__.py @@ -153,7 +153,7 @@ from .transforms import ( TransformPipeline, ) -__version__ = "0.5.8" +__version__ = "0.5.9" __all__ = [ # Main client diff --git a/pyproject.toml b/pyproject.toml index dad84bb11..923912123 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "headroom-ai" -version = "0.5.8" +version = "0.5.9" description = "The Context Optimization Layer for LLM Applications - Cut costs by 50-90%" readme = "README.md" license = "Apache-2.0"