From c8054ad9b271df9f48351b77f923fa64928578fa Mon Sep 17 00:00:00 2001 From: lorenss-m Date: Thu, 2 Jul 2026 14:59:58 -0700 Subject: [PATCH] chore: release v0.6.8 Drop the .dev1 suffix to cut the 0.6.8 release. This ships the openai-compatible workspace tools (bash/edit/write) and file-tracking enabled by default, which have been on main since 2026-06-24 but not yet in a PyPI release (latest is 0.6.7). Co-authored-by: Cursor --- hud/tests/test_version.py | 2 +- hud/version.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hud/tests/test_version.py b/hud/tests/test_version.py index be88375e..9d8ce154 100644 --- a/hud/tests/test_version.py +++ b/hud/tests/test_version.py @@ -5,4 +5,4 @@ def test_import(): """Test that the package can be imported.""" import hud - assert hud.__version__ == "0.6.8.dev1" + assert hud.__version__ == "0.6.8" diff --git a/hud/version.py b/hud/version.py index 4043742d..edb7f91d 100644 --- a/hud/version.py +++ b/hud/version.py @@ -4,4 +4,4 @@ from __future__ import annotations -__version__ = "0.6.8.dev1" +__version__ = "0.6.8" diff --git a/pyproject.toml b/pyproject.toml index 81973229..3cec70fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "hud-python" -version = "0.6.8.dev1" +version = "0.6.8" description = "SDK for the HUD platform." readme = "README.md" requires-python = ">=3.11, <3.13"