From d8b6a9a1b204da72470be5c113bac95c02b53045 Mon Sep 17 00:00:00 2001 From: GuanyiLi-Craig Date: Sun, 21 Jun 2026 15:49:30 +0100 Subject: [PATCH] Bump version to 0.0.35 to trigger PyPI publish The release pipeline publishes to PyPI only when the version in pyproject.toml differs from the version on PyPI (see the publish_pypi job's `if` condition in .github/workflows/ci.yaml). The 0.0.35 release was cut as a GitHub tag/release, but pyproject.toml still read 0.0.34 (== the PyPI version), so the publish_pypi and github_release jobs were skipped on the merge to main and nothing was published. Bumping pyproject.toml (and uv.lock) to 0.0.35 lets the next push to main detect the version mismatch and publish grafi 0.0.35 to PyPI. Co-Authored-By: Claude Opus 4.8 (1M context) --- pyproject.toml | 2 +- uv.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 6fc91ea..4c84c9d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "grafi" -version = "0.0.34" +version = "0.0.35" description = "Grafi - a flexible, event-driven framework that enables the creation of domain-specific AI agents through composable agentic workflows." authors = [{name = "Craig Li", email = "craig@binome.dev"}] license = {text = "Mozilla Public License Version 2.0"} diff --git a/uv.lock b/uv.lock index 2ef548d..1c9ed18 100644 --- a/uv.lock +++ b/uv.lock @@ -1230,7 +1230,7 @@ wheels = [ [[package]] name = "grafi" -version = "0.0.34" +version = "0.0.35" source = { editable = "." } dependencies = [ { name = "anyio" },